mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +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 { get } from 'lodash-es';
|
||||||
import { existsSync, readFileSync } from 'fs';
|
import { existsSync, readFileSync } from 'fs';
|
||||||
import { createRequire } from 'module';
|
import { fileURLToPath, pathToFileURL } from 'url';
|
||||||
import { fileURLToPath } from 'url';
|
|
||||||
import { join, dirname, isAbsolute } from 'path';
|
import { join, dirname, isAbsolute } from 'path';
|
||||||
|
|
||||||
function findRootDir(dir: string): string {
|
function findRootDir(dir: string): string {
|
||||||
@ -58,11 +57,10 @@ export function getPackageJson() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
async function getVantConfigAsync() {
|
async function getVantConfigAsync() {
|
||||||
const require = createRequire(import.meta.url);
|
|
||||||
delete require.cache[VANT_CONFIG_FILE];
|
|
||||||
|
|
||||||
try {
|
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) {
|
} catch (err) {
|
||||||
return {};
|
return {};
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user