From d8468a33790da8e7be46552325e932162b1942af Mon Sep 17 00:00:00 2001 From: Scott González Date: Fri, 15 Mar 2013 09:04:48 -0400 Subject: Grunt: Add lint and test aliases. --- Gruntfile.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'Gruntfile.js') diff --git a/Gruntfile.js b/Gruntfile.js index d610f2c47..e4fa333fd 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -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_all", [ "concat:ui", "uglify", "compare_size" ] ); grunt.registerTask( "build", [ "concat", "uglify", "cssmin", "copy:dist_units_images" ] ); -- cgit v1.2.3