Skip to content

Commit d8468a3

Browse files
committed
Grunt: Add lint and test aliases.
1 parent 0cfecb6 commit d8468a3

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

Gruntfile.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -367,7 +367,9 @@ grunt.initConfig({
367367
}
368368
});
369369

370-
grunt.registerTask( "default", [ "jshint", "csslint", "htmllint", "qunit" ] );
370+
grunt.registerTask( "default", [ "lint", "test" ] );
371+
grunt.registerTask( "lint", [ "jshint", "csslint", "htmllint" ] );
372+
grunt.registerTask( "test", [ "qunit" ] );
371373
grunt.registerTask( "sizer", [ "concat:ui", "uglify:main", "compare_size:all" ] );
372374
grunt.registerTask( "sizer_all", [ "concat:ui", "uglify", "compare_size" ] );
373375
grunt.registerTask( "build", [ "concat", "uglify", "cssmin", "copy:dist_units_images" ] );

0 commit comments

Comments
 (0)