Merge pull request #25745 from backstage/rugvip/fetch

cli: fix forwarding of target dir when resolving optional bundling paths
This commit is contained in:
Patrik Oldsberg
2024-07-23 15:36:53 +02:00
committed by GitHub
2 changed files with 6 additions and 0 deletions
+5
View File
@@ -0,0 +1,5 @@
---
'@backstage/cli': patch
---
Fix for `repo build --all` not properly detecting the experimental public entry point.
+1
View File
@@ -42,6 +42,7 @@ export async function buildBundle(options: BuildOptions) {
const paths = resolveBundlingPaths(options);
const publicPaths = await resolveOptionalBundlingPaths({
targetDir: options.targetDir,
entry: 'src/index-public-experimental',
dist: 'dist/public',
});