diff options
author | Timmy Willison <timmywillisn@gmail.com> | 2012-08-24 17:41:52 -0400 |
---|---|---|
committer | Timmy Willison <timmywillisn@gmail.com> | 2012-08-24 17:43:54 -0400 |
commit | 6ad57e91a52fdee4853aab82791e13a4b122d35a (patch) | |
tree | 7a7aa26df9f3efb487ed9a2b9cf2d8efd4eb5f5a /grunt.js | |
parent | 05337e78fa68aac3a3d703d7cc59f145f13ea779 (diff) | |
download | jquery-6ad57e91a52fdee4853aab82791e13a4b122d35a.tar.gz jquery-6ad57e91a52fdee4853aab82791e13a4b122d35a.zip |
Do not watch the dist files to make infinite change loops less common.
Diffstat (limited to 'grunt.js')
-rw-r--r-- | grunt.js | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -107,7 +107,7 @@ module.exports = function( grunt ) { }, watch: { files: [ - "<config:lint.dist>", "<config:lint.grunt>", "<config:lint.tests>", + "<config:lint.grunt>", "<config:lint.tests>", "src/**/*.js" ], tasks: "dev" |