This commit is contained in:
Henrique Dias
2015-09-26 11:42:00 +01:00
parent d569e67642
commit 5316686d2d
6 changed files with 85 additions and 86 deletions

View File

@@ -57,9 +57,9 @@ module.exports = function(grunt) {
},
},
cssmin: {
options: {
options: {
keepSpecialComments: 0
},
},
target: {
files: [{
expand: true,
@@ -84,8 +84,7 @@ module.exports = function(grunt) {
'node_modules/codemirror/mode/javascript/javascript.js',
'node_modules/codemirror/mode/markdown/markdown.js',
'node_modules/codemirror/mode/sass/sass.js',
'node_modules/codemirror/mode/htmlmixed/htmlmixed.js',
'node_modules/js-cookie/src/js.cookie.js'
'node_modules/codemirror/mode/htmlmixed/htmlmixed.js'
]
}
},
@@ -98,4 +97,4 @@ module.exports = function(grunt) {
});
grunt.registerTask('default', ['copy', 'sass', 'concat', 'cssmin', 'uglify']);
};
};