aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorScott González <scott.gonzalez@gmail.com>2013-03-15 09:04:48 -0400
committerScott González <scott.gonzalez@gmail.com>2013-03-15 09:04:48 -0400
commitd8468a33790da8e7be46552325e932162b1942af (patch)
tree4898737da403c3ed09777ca7d0933ef930e24627
parent0cfecb62722fd3bc743141129560964ba30c4802 (diff)
downloadjquery-ui-d8468a33790da8e7be46552325e932162b1942af.tar.gz
jquery-ui-d8468a33790da8e7be46552325e932162b1942af.zip
Grunt: Add lint and test aliases.
-rw-r--r--Gruntfile.js4
1 files changed, 3 insertions, 1 deletions
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" ] );