Merge pull request #25843 from backstage/blam/fix-config-loading
This commit is contained in:
@@ -0,0 +1,5 @@
|
||||
---
|
||||
'@backstage/cli': patch
|
||||
---
|
||||
|
||||
Fixing loading of additional config files with new `ConfigSources`
|
||||
@@ -70,7 +70,7 @@ export async function loadCliConfig(options: Options) {
|
||||
: undefined,
|
||||
watch: Boolean(options.watch),
|
||||
rootDir: paths.targetRoot,
|
||||
argv: options.args,
|
||||
argv: options.args.flatMap(t => ['--config', paths.resolveTarget(t)]),
|
||||
});
|
||||
|
||||
const appConfigs = await new Promise<AppConfig[]>((resolve, reject) => {
|
||||
|
||||
Reference in New Issue
Block a user