diff options
author | Rick Waldron <waldron.rick@gmail.com> | 2012-06-26 14:45:21 -0400 |
---|---|---|
committer | Rick Waldron <waldron.rick@gmail.com> | 2012-06-26 14:45:21 -0400 |
commit | babf81570c0d7f1de4f16d4f2927058de1799e45 (patch) | |
tree | 9c7e55f175881b2e3d1fe127428b1a725e2e0199 /grunt.js | |
parent | 9cbe375a55dde24f98cd56c4f541473c01de1ff9 (diff) | |
download | jquery-babf81570c0d7f1de4f16d4f2927058de1799e45.tar.gz jquery-babf81570c0d7f1de4f16d4f2927058de1799e45.zip |
Fixes broken grunt watch task.
Diffstat (limited to 'grunt.js')
-rw-r--r-- | grunt.js | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -105,7 +105,10 @@ module.exports = function( grunt ) { files: "test/index.html" }, watch: { - files: [ "<config:lint.files>", "src/**/*.js" ], + files: [ + "<config:lint.dist>", "<config:lint.grunt>", "<config:lint.test>", + "src/**/*.js" + ], tasks: "dev" }, uglify: {} |