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', {
options: {
sassDir: '<%= yeoman.app %>/assets/css/sass',
cssDir: '.tmp/assets/css',
imagesDir: '<%= yeoman.app %>/assets/images',
javascriptsDir: '<%= yeoman.app %>/libs',
importPath: ['<%= yeoman.app %>/libs', '<%= yeoman.app %>/src', '<%= yeoman.app %>/assets/css/sass'],
relativeAssets: false,
assetCacheBuster: false,
noLineComments: true,
debugInfo: false,
raw: 'Sass::Script::Number.precision = 10\n'
},
server: {
options: {
debugInfo: false
}
}
});
grunt.loadNpmTasks('grunt-contrib-compass');
};