mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
fix(example): wxss import error due to \ symbol for path in windows OS (#2924)
This commit is contained in:
parent
a6f2d4e668
commit
98d72b491f
@ -29,10 +29,12 @@ const lessCompiler = dist =>
|
|||||||
.pipe(
|
.pipe(
|
||||||
insert.transform((contents, file) => {
|
insert.transform((contents, file) => {
|
||||||
if (!file.path.includes('packages' + path.sep + 'common')) {
|
if (!file.path.includes('packages' + path.sep + 'common')) {
|
||||||
const relativePath = path.relative(
|
const relativePath = path
|
||||||
path.normalize(`${file.path}${path.sep}..`),
|
.relative(
|
||||||
baseCssPath
|
path.normalize(`${file.path}${path.sep}..`),
|
||||||
);
|
baseCssPath
|
||||||
|
)
|
||||||
|
.replace(/\\/g, '/');
|
||||||
contents = `@import '${relativePath}';${contents}`;
|
contents = `@import '${relativePath}';${contents}`;
|
||||||
}
|
}
|
||||||
return contents;
|
return contents;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user