mirror of
https://github.com/jquery/jquery.git
synced 2025-01-10 18:24:24 +00:00
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:
parent
37ffb29d37
commit
655350be5d
6
grunt.js
6
grunt.js
@ -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 ) {
|
||||
|
Loading…
Reference in New Issue
Block a user