From 8c1830ed6c18a24dd50a537d290ac306ed5c5541 Mon Sep 17 00:00:00 2001 From: eric-hgh <86732415@qq.com> Date: Sun, 20 Feb 2022 10:00:55 +0800 Subject: [PATCH] =?UTF-8?q?build:=20=E5=85=BC=E5=AE=B9=20windows=20(#4802)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- build/compiler.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/build/compiler.js b/build/compiler.js index b4ff54c8..6b93e126 100644 --- a/build/compiler.js +++ b/build/compiler.js @@ -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;