We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 87b33e5 commit 2820d0aCopy full SHA for 2820d0a
src/gulpfile.ts
@@ -19,8 +19,8 @@ gulp.task('build-with-lib', done => {
19
gulp.task('build', gulp.parallel('build-with-es', 'build-with-lib'));
20
21
// watch组件修改
22
-gulp.task('start', () => {
+gulp.task('start', gulp.series('build', () => {
23
debug.log('start watch ....');
24
const componentDir = getComponentDir();
25
gulp.watch([`${componentDir}/**/*`], gulp.parallel('build'));
26
-});
+}));
0 commit comments