diff --git a/packages/vant-cli/src/compiler/get-deps.ts b/packages/vant-cli/src/compiler/get-deps.ts index 8260c6c4f..3009bdbd2 100644 --- a/packages/vant-cli/src/compiler/get-deps.ts +++ b/packages/vant-cli/src/compiler/get-deps.ts @@ -8,6 +8,9 @@ let existsCache: Record = {}; // https://regexr.com/47jlq const IMPORT_RE = /import\s+?(?:(?:(?:[\w*\s{},]*)\s+from(\s+)?)|)(?:(?:".*?")|(?:'.*?'))[\s]*?(?:;|$|)/g; + +const IMPORT_NOF_RE = /import\s*\(\s*?['"].+?['"]\)/g; + const EXPORT_FROM_RE = /@?export\s+?(?:(?:(?:[\w*\s{},]*)\s+from(\s+)?)|)(?:(?:".*?")|(?:'.*?'))[\s]*?(?:;|$|)/g; @@ -16,6 +19,11 @@ function matchImports(code: string): string[] { return imports.filter((line) => !line.includes('import type')); } +function matchImportsNof(code: string): string[] { + const imports = code.match(IMPORT_NOF_RE) || []; + return imports.filter((line) => !line.includes('import type')); +} + function matchExportFroms(code: string): string[] { const exportFroms = code.match(EXPORT_FROM_RE) || []; return exportFroms.filter((line) => !line.includes('export type')); @@ -97,17 +105,23 @@ export function getDeps(filePath: string) { /** * 1. Replace .vue extension * @example "import App from 'App.vue';" => "import App from 'App.xxx';" + * @example "defineAsyncComponent(() => import('../xxx.vue'))" => "defineAsyncComponent(() => import('../xxx.xxx'));" * * 2. if using .mjs or .cjs, complete the import path * @example import './foo' -> import './foo.mjs' * @example import './foo' -> import './foo/index.mjs' + * @example "defineAsyncComponent(() => import('../foo.vue'))" => "defineAsyncComponent(() => import('../foo.mjs'));" */ export function replaceScriptImportExt( code: string, filePath: string, ext: string, ) { - const imports = [...matchImports(code), ...matchExportFroms(code)]; + const imports = [ + ...matchImports(code), + ...matchImportsNof(code), + ...matchExportFroms(code), + ]; const updateImport = (index: number, newImport: string) => { code = code.replace(imports[index], newImport);