diff options
author | Scott González <scott.gonzalez@gmail.com> | 2013-03-15 09:04:48 -0400 |
---|---|---|
committer | Scott González <scott.gonzalez@gmail.com> | 2013-03-15 09:04:48 -0400 |
commit | d8468a33790da8e7be46552325e932162b1942af (patch) | |
tree | 4898737da403c3ed09777ca7d0933ef930e24627 | |
parent | 0cfecb62722fd3bc743141129560964ba30c4802 (diff) | |
download | jquery-ui-d8468a33790da8e7be46552325e932162b1942af.tar.gz jquery-ui-d8468a33790da8e7be46552325e932162b1942af.zip |
Grunt: Add lint and test aliases.
-rw-r--r-- | Gruntfile.js | 4 |
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" ] ); |