From 965724e8a5e586ea2c4393b559a05931abe5c368 Mon Sep 17 00:00:00 2001 From: hminghe Date: Sun, 12 Mar 2023 14:58:49 +0800 Subject: [PATCH] fix(@vant/cli): replace vue file import causing duplicate suffixes (#11649) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * fix(@vant/cli):替换 vue 文件导入出现重复后缀 * fix(@vant/cli):替换 vue 文件导入出现重复后缀 --- packages/vant-cli/src/compiler/get-deps.ts | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/packages/vant-cli/src/compiler/get-deps.ts b/packages/vant-cli/src/compiler/get-deps.ts index 5fba5a936..0a3dc1548 100644 --- a/packages/vant-cli/src/compiler/get-deps.ts +++ b/packages/vant-cli/src/compiler/get-deps.ts @@ -127,6 +127,12 @@ export function replaceScriptImportExt( return; } + const isExistExt = line.includes(ext); + if (isExistExt) { + return; + } + + const pathInfo = getPathByImport(line, filePath); if (pathInfo) {