Merge pull request #34416 from backstage/freben/fix-missing-runtime-deps

fix: restore runtime dependencies incorrectly demoted to devDependencies
This commit is contained in:
Fredrik Adelöw
2026-05-27 15:30:53 +02:00
committed by GitHub
4 changed files with 9 additions and 2 deletions
+6
View File
@@ -0,0 +1,6 @@
---
'@backstage/catalog-client': patch
'@backstage/frontend-plugin-api': patch
---
Moved dependencies that are re-exported in the public API from `devDependencies` to `dependencies`. These were incorrectly demoted in #33936 because the source code only uses type imports, but the types still appear in the published API surface and need to be resolvable by consumers at build time.