Summary Table

Categories Total Count
PII 0
URL 0
DNS 0
EKL 0
IP 0
PORT 0
VsID 0
CF 0
AI 0
VPD 0
PL 0
Other 0

File Content

module.exports = function(grunt) {

grunt.config('compass', {
main: {
options: {
sassDir: '<%= yeoman.app %>/_assets/sass/main',
cssDir: '.tmp/_assets/css',
imagesDir: '<%= yeoman.app %>/_assets/images',
javascriptsDir: '<%= yeoman.app %>/libs',
importPath: ['<%= yeoman.app %>/libs', '<%= yeoman.app %>/modules', '<%= yeoman.app %>/_assets/sass/main'],
trace: true,
relativeAssets: false,
assetCacheBuster: false,
noLineComments: true,
debugInfo: false,
raw: 'Sass::Script::Number.precision = 10\n'
},
server: {
options: {
debugInfo: false
}
}
},
healthReport: {
options: {
sassDir: '<%= yeoman.app %>/_assets/sass/health-report',
cssDir: '.tmp/_assets/css',
importPath: ['<%= yeoman.app %>/libs', '<%= yeoman.app %>/modules', '<%= yeoman.app %>/_assets/sass/health-report'],
trace: true,
relativeAssets: false,
assetCacheBuster: false,
noLineComments: true,
debugInfo: false,
raw: 'Sass::Script::Number.precision = 10\n'
},
server: {
options: {
debugInfo: false
}
}
}
});

grunt.loadNpmTasks('grunt-contrib-compass');

};