fix(example): wxss import error due to \ symbol for path in windows OS (#2924)

This commit is contained in:
gitxiongpan 2020-04-11 01:02:17 +10:00 committed by GitHub
parent a6f2d4e668
commit 98d72b491f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -29,10 +29,12 @@ const lessCompiler = dist =>
.pipe(
insert.transform((contents, file) => {
if (!file.path.includes('packages' + path.sep + 'common')) {
const relativePath = path.relative(
path.normalize(`${file.path}${path.sep}..`),
baseCssPath
);
const relativePath = path
.relative(
path.normalize(`${file.path}${path.sep}..`),
baseCssPath
)
.replace(/\\/g, '/');
contents = `@import '${relativePath}';${contents}`;
}
return contents;