astro-ghostcms/.pnpm-store/v3/files/b0/3e2da506f9f3a4ba9122988308c...

55 lines
1.3 KiB
Plaintext
Raw Normal View History

2024-02-14 14:10:47 +00:00
import { resolve, dirname } from 'node:path';
import fs from 'node:fs';
import process from 'node:process';
import { createConfigLoader } from 'unconfig';
async function loadConfig(cwd = process.cwd(), configOrPath = cwd, extraConfigSources = [], defaults = {}) {
let inlineConfig = {};
if (typeof configOrPath !== "string") {
inlineConfig = configOrPath;
if (inlineConfig.configFile === false) {
return {
config: inlineConfig,
sources: []
};
} else {
configOrPath = inlineConfig.configFile || process.cwd();
}
}
const resolved = resolve(configOrPath);
let isFile = false;
if (fs.existsSync(resolved) && fs.statSync(resolved).isFile()) {
isFile = true;
cwd = dirname(resolved);
}
const loader = createConfigLoader({
sources: isFile ? [
{
files: resolved,
extensions: []
}
] : [
{
files: [
"unocss.config",
"uno.config"
]
},
...extraConfigSources
],
cwd,
defaults: inlineConfig
});
const result = await loader.load();
result.config = Object.assign(defaults, result.config || inlineConfig);
if (result.config.configDeps) {
result.sources = [
...result.sources,
...result.config.configDeps.map((i) => resolve(cwd, i))
];
}
return result;
}
export { loadConfig };