Create special "grunt watch" task called "dev"

"dev" is a short task list that's optimized for grunt watch's high run rate frequency

Signed-off-by: Rick Waldron <waldron.rick@gmail.com>
This commit is contained in:
Rick Waldron 2012-06-05 11:50:49 -04:00
parent 37ffb29d37
commit 655350be5d

View File

@ -69,7 +69,7 @@ module.exports = function( grunt ) {
},
watch: {
files: [ "<config:lint.files>", "src/**/*.js" ],
tasks: "default"
tasks: "dev"
},
jshint: {
options: {
@ -106,6 +106,10 @@ module.exports = function( grunt ) {
// Default grunt.
grunt.registerTask( "default", "submodules selector build:*:* dist:* lint min compare_size" );
// Short list as a high frequency watch task
grunt.registerTask( "dev", "selector build:*:* lint" );
// Load the "compare_size" task from NPM packages
grunt.loadNpmTasks("grunt-compare-size");
grunt.registerTask( "testswarm", function( commit, configFile ) {