mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-05 19:41:42 +08:00
fix(cli): absolute file paths don't work on Windows (#9898)
This commit is contained in:
parent
ee08a2611b
commit
e1cafe61ed
@ -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 {};
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user