File tree Expand file tree Collapse file tree 1 file changed +4
-6
lines changed Expand file tree Collapse file tree 1 file changed +4
-6
lines changed Original file line number Diff line number Diff line change @@ -91,9 +91,8 @@ module.exports = function(grunt) {
91
91
"var parserlib = require('parserlib');\n" ,
92
92
footer : "\nexports.CSSLint = CSSLint;"
93
93
} ,
94
- files : {
95
- "<%= build_dir %>/csslint-node.js" : [ "<%= csslint_files %>" ]
96
- }
94
+ src : "<%= csslint_files %>" ,
95
+ dest : "<%= build_dir %>/csslint-node.js"
97
96
} ,
98
97
node_cli : {
99
98
options : {
@@ -215,13 +214,12 @@ module.exports = function(grunt) {
215
214
grunt . loadTasks ( "tasks" ) ;
216
215
217
216
// Default task.
218
- grunt . registerTask ( "default" , [ "build" , " test"] ) ;
217
+ grunt . registerTask ( "default" , [ "test" ] ) ;
219
218
220
219
grunt . registerTask ( "build" , [ "clean" , "concat" , "includereplace" ] ) ;
221
220
222
- //Alias for
221
+ // Alias for
223
222
grunt . registerTask ( "dist" , "build" ) ;
224
- grunt . registerTask ( "lint" , "jshint" ) ;
225
223
226
224
// Testing
227
225
grunt . registerTask ( "test" , [ "build" , "jshint" , "yuitest" ] ) ;
You can’t perform that action at this time.
0 commit comments