mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
build: 兼容 windows (#4802)
This commit is contained in:
parent
99a66b4d35
commit
8c1830ed6c
@ -64,14 +64,14 @@ const tsCompiler = (dist, config) =>
|
|||||||
tsResult.js
|
tsResult.js
|
||||||
.pipe(
|
.pipe(
|
||||||
insert.transform((contents, file) => {
|
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';
|
const iconConfig = '@vant/icons/src/config';
|
||||||
contents = contents.replace(
|
contents = contents.replace(
|
||||||
iconConfig,
|
iconConfig,
|
||||||
path.relative(
|
path.relative(
|
||||||
path.dirname(file.path),
|
path.dirname(file.path),
|
||||||
`${exampleDistDir}/${iconConfig}`
|
`${exampleDistDir}/${iconConfig}`
|
||||||
)
|
).replace(/\\/g, '/')
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
return contents;
|
return contents;
|
||||||
@ -92,7 +92,7 @@ const copier = (dist, ext) =>
|
|||||||
.src(srcPath)
|
.src(srcPath)
|
||||||
.pipe(
|
.pipe(
|
||||||
insert.transform((contents, file) => {
|
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', '');
|
contents = contents.replace('/example', '');
|
||||||
}
|
}
|
||||||
return contents;
|
return contents;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user