[build]: fix watch not work

This commit is contained in:
rex 2019-03-26 00:13:03 +08:00 committed by GitHub
parent d99829d28d
commit 48596b6e35
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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)();