build: 兼容 windows (#4802)

This commit is contained in:
eric-hgh 2022-02-20 10:00:55 +08:00 committed by GitHub
parent 99a66b4d35
commit 8c1830ed6c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -64,14 +64,14 @@ const tsCompiler = (dist, config) =>
tsResult.js
.pipe(
insert.transform((contents, file) => {
if (dist === exampleDistDir && file.path.includes('/demo/')) {
if (dist === exampleDistDir && file.path.includes(`${path.sep}demo${path.sep}`)) {
const iconConfig = '@vant/icons/src/config';
contents = contents.replace(
iconConfig,
path.relative(
path.dirname(file.path),
`${exampleDistDir}/${iconConfig}`
)
).replace(/\\/g, '/')
);
}
return contents;
@ -92,7 +92,7 @@ const copier = (dist, ext) =>
.src(srcPath)
.pipe(
insert.transform((contents, file) => {
if (ext === 'json' && file.path.includes('/demo/')) {
if (ext === 'json' && file.path.includes(`${path.sep}demo${path.sep}`) ) {
contents = contents.replace('/example', '');
}
return contents;