javascript - How grunt watch files in sub folders? -
Files in my code folders and in this way, you never know how many sub folders in it:
js / sub 1 / ajs js / sub2 / bjs js / sub3 / sub 31 / cjs js / sub4 / all 41 / sub 411 / djs < Here's part of Gruntfile.js: grunt.initConfig ({clock: {src: {files: [js / * .js'], tasks: [ ]}}}); 'js / *. Using Js' can not see the change in all my Javascript files. So how to write the correct file path expression?
For each copy, the directory path and some file types in its subdirectory, you would like to:
Files: ['js / ** / *. Js']
Comments
Post a Comment