From e281548dc2554ee20fd3ef6d91b669c616a52011 Mon Sep 17 00:00:00 2001 From: winixt Date: Mon, 18 Apr 2022 10:21:38 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20windows=20=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- scripts/build.mjs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/scripts/build.mjs b/scripts/build.mjs index 35955fca..7650883a 100644 --- a/scripts/build.mjs +++ b/scripts/build.mjs @@ -40,6 +40,8 @@ function getPkgPath(pkgName) { } function genShortPath(filePath) { + // 处理 windows 的路径 + filePath = filePath.replace(/\\/g, '/'); const codePath = filePath.split(`/${SOURCE_DIR}/`)[1]; return `${SOURCE_DIR}/${codePath}`; }