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