mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-05 19:41:45 +08:00
refactor(build): use typescript watch mode (#2870)
This commit is contained in:
parent
b8cbc8dd44
commit
30d9fae6e1
@ -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'));
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
{
|
{
|
||||||
"extends": "./tsconfig.json",
|
"extends": "./tsconfig.json",
|
||||||
"compilerOptions": {
|
"compilerOptions": {
|
||||||
|
"watch": true,
|
||||||
"outDir": "example/dist"
|
"outDir": "example/dist"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user