fix(build): fix CR

This commit is contained in:
nemo-shen 2021-12-20 23:17:58 +08:00 committed by neverland
parent 0d856b0074
commit f226d11b4f

View File

@ -61,9 +61,13 @@ const tsCompiler = (dist, config) =>
.js.pipe( .js.pipe(
insert.transform((contents, file) => { insert.transform((contents, file) => {
if (dist === exampleDistDir && file.path.includes('/demo/')) { if (dist === exampleDistDir && file.path.includes('/demo/')) {
const iconConfig = '@vant/icons/src/config';
contents = contents.replace( contents = contents.replace(
'@vant/icons/src/config', iconConfig,
'../../@vant/icons/src/config' path.relative(
path.dirname(file.path),
`${exampleDistDir}/${iconConfig}`
)
); );
} }
return contents; return contents;
@ -132,14 +136,27 @@ tasks.buildExample = gulp.series(
const appJson = JSON.parse(fs.readFileSync(exampleAppJsonPath)); const appJson = JSON.parse(fs.readFileSync(exampleAppJsonPath));
appJson.pages.forEach((path) => { appJson.pages.forEach((path) => {
const component = path.replace(/(pages\/|\/index)/g, ''); const component = path.replace(/(pages\/|\/index)/g, '');
fs.writeFileSync( const writeFiles = [
`${examplePagesDir}/${component}/index.js`, {
"import Page from '../../common/page';\n\nPage();" path: `${examplePagesDir}/${component}/index.js`,
); contents: "import Page from '../../common/page';\n\nPage();",
fs.writeFileSync( },
`${examplePagesDir}/${component}/index.wxml`, {
`<van-${component}-demo />` path: `${examplePagesDir}/${component}/index.wxml`,
); contents: `<van-${component}-demo />`,
},
];
writeFiles.forEach((writeFile) => {
fs.access(writeFile.path, fs.constants.F_OK, (fileNotExists) => {
if (fileNotExists) {
fs.writeFile(writeFile.path, writeFile.contents, (err) => {
if (err) {
throw err;
}
});
}
});
});
}); });
}, },
() => { () => {