From 98d72b491f98b58d6662e36e2745707887c7e3c9 Mon Sep 17 00:00:00 2001 From: gitxiongpan <45360805+gitxiongpan@users.noreply.github.com> Date: Sat, 11 Apr 2020 01:02:17 +1000 Subject: [PATCH] fix(example): wxss import error due to \ symbol for path in windows OS (#2924) --- build/compiler.js | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/build/compiler.js b/build/compiler.js index 6aa6c582..5af48f08 100644 --- a/build/compiler.js +++ b/build/compiler.js @@ -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;