merge: fix: sort multiple config files (#285)

This commit is contained in:
Marie 2023-12-31 19:49:06 +01:00
commit 49885504b9
1 changed files with 1 additions and 1 deletions

View File

@ -201,7 +201,7 @@ export function loadConfig(): Config {
JSON.parse(fs.readFileSync(`${_dirname}/../../../built/_vite_/manifest.json`, 'utf-8'))
: { 'src/_boot_.ts': { file: 'src/_boot_.ts' } };
const config = globSync(path)
const config = globSync(path).sort()
.map(path => fs.readFileSync(path, 'utf-8'))
.map(contents => yaml.load(contents) as Source)
.reduce(