Make grunt watch:js include assets/js/plugins/**/*.js

If I add JavaScript packages to my `assets/js/plugins/` directory, they must be concatenated, uglified, and added to `scripts.js` to be used in my theme. The `watch:js` task should also note changes to those files and directories.
This commit is contained in:
David Rogers
2014-06-06 16:50:27 +00:00
parent 4653b9c6ea
commit 0804074fdf

View File

@@ -131,6 +131,7 @@ module.exports = function(grunt) {
},
js: {
files: [
jsFileList,
'<%= jshint.all %>'
],
tasks: ['jshint', 'concat']