refactor(build): use typescript watch mode (#2870)

This commit is contained in:
rex 2020-03-16 15:43:52 +08:00 committed by GitHub
parent b8cbc8dd44
commit 30d9fae6e1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 1 additions and 1 deletions

View File

@ -83,7 +83,6 @@ tasks.buildExample = gulp.series(
() => () =>
gulp.src(`${icons}/**/*`).pipe(gulp.dest(`${exampleDir}/@vant/icons`)), gulp.src(`${icons}/**/*`).pipe(gulp.dest(`${exampleDir}/@vant/icons`)),
() => { () => {
gulp.watch(`${src}/**/*.ts`, tsCompiler(exampleDir, exampleConfig));
gulp.watch(`${src}/**/*.less`, lessCompiler(exampleDir)); gulp.watch(`${src}/**/*.less`, lessCompiler(exampleDir));
gulp.watch(`${src}/**/*.wxml`, copier(exampleDir, 'wxml')); gulp.watch(`${src}/**/*.wxml`, copier(exampleDir, 'wxml'));
gulp.watch(`${src}/**/*.wxs`, copier(exampleDir, 'wxs')); gulp.watch(`${src}/**/*.wxs`, copier(exampleDir, 'wxs'));

View File

@ -1,6 +1,7 @@
{ {
"extends": "./tsconfig.json", "extends": "./tsconfig.json",
"compilerOptions": { "compilerOptions": {
"watch": true,
"outDir": "example/dist" "outDir": "example/dist"
} }
} }