From 48596b6e35197baf89f816feb93bbb38eb10b133 Mon Sep 17 00:00:00 2001 From: rex Date: Tue, 26 Mar 2019 00:13:03 +0800 Subject: [PATCH] [build]: fix watch not work --- build/compiler.js | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/build/compiler.js b/build/compiler.js index 63240dd8..d6d35b93 100644 --- a/build/compiler.js +++ b/build/compiler.js @@ -49,11 +49,11 @@ const compileJson = () => copy('json'); const compileWxs = () => copy('wxs'); if (!isProduction) { - gulp.watch('src/**/*.ts', compileTs); - gulp.watch('src/**/*.less', compileLess); - gulp.watch('src/**/*.wxml', compileWxml); - gulp.watch('src/**/*.wxs', compileWxs); - gulp.watch('src/**/*.json', compileJson); + gulp.watch(`${src}/**/*.ts`, compileTs); + gulp.watch(`${src}/**/*.less`, compileLess); + gulp.watch(`${src}/**/*.wxml`, compileWxml); + gulp.watch(`${src}/**/*.wxs`, compileWxs); + gulp.watch(`${src}/**/*.json`, compileJson); } gulp.parallel(compileTs, compileLess, compileWxml, compileJson, compileWxs)();