From e1cafe61edf69089a165d39ec6fe835a8de0c5db Mon Sep 17 00:00:00 2001 From: neverland Date: Thu, 18 Nov 2021 14:47:32 +0800 Subject: [PATCH] fix(cli): absolute file paths don't work on Windows (#9898) --- packages/vant-cli/src/common/constant.ts | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/packages/vant-cli/src/common/constant.ts b/packages/vant-cli/src/common/constant.ts index c46587f57..4cdc78822 100644 --- a/packages/vant-cli/src/common/constant.ts +++ b/packages/vant-cli/src/common/constant.ts @@ -1,7 +1,6 @@ import { get } from 'lodash-es'; import { existsSync, readFileSync } from 'fs'; -import { createRequire } from 'module'; -import { fileURLToPath } from 'url'; +import { fileURLToPath, pathToFileURL } from 'url'; import { join, dirname, isAbsolute } from 'path'; function findRootDir(dir: string): string { @@ -58,11 +57,10 @@ export function getPackageJson() { } async function getVantConfigAsync() { - const require = createRequire(import.meta.url); - delete require.cache[VANT_CONFIG_FILE]; - try { - return (await import(VANT_CONFIG_FILE)).default; + // https://github.com/nodejs/node/issues/31710 + // absolute file paths don't work on Windows + return (await import(pathToFileURL(VANT_CONFIG_FILE).href)).default; } catch (err) { return {}; }