mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
[build]: fix watch not work
This commit is contained in:
parent
d99829d28d
commit
48596b6e35
@ -49,11 +49,11 @@ const compileJson = () => copy('json');
|
|||||||
const compileWxs = () => copy('wxs');
|
const compileWxs = () => copy('wxs');
|
||||||
|
|
||||||
if (!isProduction) {
|
if (!isProduction) {
|
||||||
gulp.watch('src/**/*.ts', compileTs);
|
gulp.watch(`${src}/**/*.ts`, compileTs);
|
||||||
gulp.watch('src/**/*.less', compileLess);
|
gulp.watch(`${src}/**/*.less`, compileLess);
|
||||||
gulp.watch('src/**/*.wxml', compileWxml);
|
gulp.watch(`${src}/**/*.wxml`, compileWxml);
|
||||||
gulp.watch('src/**/*.wxs', compileWxs);
|
gulp.watch(`${src}/**/*.wxs`, compileWxs);
|
||||||
gulp.watch('src/**/*.json', compileJson);
|
gulp.watch(`${src}/**/*.json`, compileJson);
|
||||||
}
|
}
|
||||||
|
|
||||||
gulp.parallel(compileTs, compileLess, compileWxml, compileJson, compileWxs)();
|
gulp.parallel(compileTs, compileLess, compileWxml, compileJson, compileWxs)();
|
||||||
|
Loading…
x
Reference in New Issue
Block a user