mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
fix(compiler): watch ts file (#4693)
This commit is contained in:
parent
79820f7f45
commit
819efae7c8
@ -134,35 +134,39 @@ tasks.buildExample = gulp.series(
|
|||||||
.pipe(gulp.dest(`${exampleDistDir}/@vant/icons`)),
|
.pipe(gulp.dest(`${exampleDistDir}/@vant/icons`)),
|
||||||
() => {
|
() => {
|
||||||
const appJson = JSON.parse(fs.readFileSync(exampleAppJsonPath));
|
const appJson = JSON.parse(fs.readFileSync(exampleAppJsonPath));
|
||||||
appJson.pages.forEach((path) => {
|
const excludePages = ['pages/dashboard/index'];
|
||||||
const component = path.replace(/(pages\/|\/index)/g, '');
|
appJson.pages
|
||||||
const writeFiles = [
|
.filter((page) => page.indexOf(excludePages) === -1)
|
||||||
{
|
.forEach((path) => {
|
||||||
path: `${examplePagesDir}/${component}/index.js`,
|
const component = path.replace(/(pages\/|\/index)/g, '');
|
||||||
contents: "import Page from '../../common/page';\n\nPage();",
|
const writeFiles = [
|
||||||
},
|
{
|
||||||
{
|
path: `${examplePagesDir}/${component}/index.js`,
|
||||||
path: `${examplePagesDir}/${component}/index.wxml`,
|
contents: "import Page from '../../common/page';\n\nPage();",
|
||||||
contents: `<van-${component}-demo />`,
|
},
|
||||||
},
|
{
|
||||||
];
|
path: `${examplePagesDir}/${component}/index.wxml`,
|
||||||
writeFiles.forEach((writeFile) => {
|
contents: `<van-${component}-demo />`,
|
||||||
fs.access(writeFile.path, fs.constants.F_OK, (fileNotExists) => {
|
},
|
||||||
if (fileNotExists) {
|
];
|
||||||
fs.writeFile(writeFile.path, writeFile.contents, (err) => {
|
writeFiles.forEach((writeFile) => {
|
||||||
if (err) {
|
fs.access(writeFile.path, fs.constants.F_OK, (fileNotExists) => {
|
||||||
throw err;
|
if (fileNotExists) {
|
||||||
}
|
fs.writeFile(writeFile.path, writeFile.contents, (err) => {
|
||||||
});
|
if (err) {
|
||||||
}
|
throw err;
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
});
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
});
|
|
||||||
},
|
},
|
||||||
() => {
|
() => {
|
||||||
gulp.watch(`${src}/**/*.less`, lessCompiler(exampleDistDir));
|
gulp.watch(`${src}/**/*.less`, lessCompiler(exampleDistDir));
|
||||||
gulp.watch(`${src}/**/*.wxml`, copier(exampleDistDir, 'wxml'));
|
gulp.watch(`${src}/**/*.wxml`, copier(exampleDistDir, 'wxml'));
|
||||||
gulp.watch(`${src}/**/*.wxs`, copier(exampleDistDir, 'wxs'));
|
gulp.watch(`${src}/**/*.wxs`, copier(exampleDistDir, 'wxs'));
|
||||||
|
gulp.watch(`${src}/**/*.ts`, tsCompiler(exampleDistDir, exampleConfig));
|
||||||
gulp.watch(`${src}/**/*.json`, copier(exampleDistDir, 'json'));
|
gulp.watch(`${src}/**/*.json`, copier(exampleDistDir, 'json'));
|
||||||
}
|
}
|
||||||
)
|
)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user