Grunt: Add lint and test aliases.

(cherry picked from commit d8468a3379)
This commit is contained in:
Scott González 2013-03-15 09:04:48 -04:00
parent e677ae8012
commit 0a06debc97

View File

@ -367,7 +367,9 @@ grunt.initConfig({
} }
}); });
grunt.registerTask( "default", [ "jshint", "csslint", "htmllint", "qunit" ] ); grunt.registerTask( "default", [ "lint", "test" ] );
grunt.registerTask( "lint", [ "jshint", "csslint", "htmllint" ] );
grunt.registerTask( "test", [ "qunit" ] );
grunt.registerTask( "sizer", [ "concat:ui", "uglify:main", "compare_size:all" ] ); grunt.registerTask( "sizer", [ "concat:ui", "uglify:main", "compare_size:all" ] );
grunt.registerTask( "sizer_all", [ "concat:ui", "uglify", "compare_size" ] ); grunt.registerTask( "sizer_all", [ "concat:ui", "uglify", "compare_size" ] );
grunt.registerTask( "build", [ "concat", "uglify", "cssmin", "copy:dist_units_images" ] ); grunt.registerTask( "build", [ "concat", "uglify", "cssmin", "copy:dist_units_images" ] );