Skip to content

Commit bd72a79

Browse files
authored
chore: Fix watch task failure (#1543)
1 parent 30b2427 commit bd72a79

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

elements/pfe-sass/gulpfile.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ task("build:sassdoc", () => src(["{extends,functions,maps,mixins,variables}/_*.s
3232

3333
task("build", series("clean", "build:sassdoc"));
3434

35-
task("watch", async () => {
35+
task("watch", () => {
3636
watch(["{extends,functions,maps,mixins,variables}/_*.scss", "pfe-sass.scss"], {
3737
cwd: paths.compiled
3838
}, series("build:sassdoc"));

generators/element/templates/scripts/gulpfile.factory.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -319,7 +319,7 @@ ${fs
319319
)
320320
);
321321

322-
task("watch", async () => {
322+
task("watch", () => {
323323
watch(path.join(paths.source, "*"), series("build"));
324324
});
325325

scripts/gulpfile.factory.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -336,7 +336,7 @@ ${fs
336336
)
337337
);
338338

339-
task("watch", async () => {
339+
task("watch", () => {
340340
watch(path.join(paths.source, "*"), series("build"));
341341
});
342342

@@ -350,7 +350,7 @@ ${fs
350350
series("clean", "compile:styles", "minify:styles", "copy:src", "copy:compiled", ...prebundle, "clean:post")
351351
);
352352

353-
task("watch:nojs", async () => {
353+
task("watch:nojs", () => {
354354
watch(path.join(paths.source, "*"), series("build:nojs"));
355355
});
356356

0 commit comments

Comments
 (0)