We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aae47e7 commit dfdc339Copy full SHA for dfdc339
lib/copy.js
@@ -58,7 +58,7 @@ module.exports = (args) => BbPromise.resolve(args).then(args => {
58
console.log(` Copying ${colors.gray(fromPath)} to ${colors.gray(toPath)}`);
59
fse.copySync(fromPath, toPath);
60
if (options.watch) {
61
- watchFiles(path.join(fromPath, '*')).then(copyWatcher(fromPath, toPath));
+ watchFiles(path.join(fromPath, '**/*')).then(copyWatcher(fromPath, toPath));
62
}
63
} else {
64
// copyGlobs has the form { 'glob': 'dest folder' }
0 commit comments