Skip to content

Commit

Permalink
fix(janus-idp/cli): fixes issue with missing configSchema.json (#2368)
Browse files Browse the repository at this point in the history
This was affecting packages in @backstage-community
  • Loading branch information
kadel authored Oct 17, 2024
1 parent 5cf60df commit 140cc50
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .changeset/sixty-gifts-buy.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@janus-idp/cli": patch
---

Fixed issue with missing configSchema.json that was affecting packages in @backstage-community
2 changes: 1 addition & 1 deletion packages/cli/src/lib/schema/collect.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ type Item = {
*/
const filterPackages = (depName: string) => {
// reject all core dependencies
if (depName.startsWith('@backstage')) {
if (depName.startsWith('@backstage/')) {
// make an exception for Backstage core plugins (used in plugin wrappers) unless they are common to all Backstage instances
if (depName.startsWith('@backstage/plugin-')) {
if (
Expand Down

0 comments on commit 140cc50

Please sign in to comment.