Skip to content

Commit c374b65

Browse files
committed
chore(copier): Return promise
1 parent ea6b7d3 commit c374b65

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/lib/copier.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ const copier = () => {
8989
return Promise.all(copyPromises).then(() => {
9090
//we need to special case patterns/**/*.md|.json|.pattern-extensions as well as the global structures
9191
if (options.watch) {
92-
watchPatternLabFiles(patternlab, assetDirectories, basePath);
92+
return watchPatternLabFiles(patternlab, assetDirectories, basePath);
9393
}
9494
});
9595
};

0 commit comments

Comments
 (0)