fix(cli): absolute file paths don't work on Windows (#9898)

This commit is contained in:
neverland 2021-11-18 14:47:32 +08:00 committed by GitHub
parent ee08a2611b
commit e1cafe61ed
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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 {};
}