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 c374b65 commit 192f9d0Copy full SHA for 192f9d0
core/index.js
@@ -372,7 +372,7 @@ const patternlab_module = function(config) {
372
copier()
373
.copyAndWatch(patternlab.config.paths, patternlab, options)
374
.then(() => {
375
- this.events.once(events.PATTERNLAB_PATTERN_CHANGE, f => {
+ this.events.once(events.PATTERNLAB_PATTERN_CHANGE, () => {
376
if (!patternlab.isBusy) {
377
return this.build(options);
378
}
core/lib/copier.js
@@ -91,6 +91,7 @@ const copier = () => {
91
if (options.watch) {
92
return watchPatternLabFiles(patternlab, assetDirectories, basePath);
93
94
+ return Promise.resolve();
95
});
96
};
97
0 commit comments