Skip to content

Commit

Permalink
fix(janus-idp/cli): fixes issue with missing configSchema.json
Browse files Browse the repository at this point in the history
This was affecting packages in @backstage-community
  • Loading branch information
kadel committed Oct 16, 2024
1 parent c6e5c5b commit 83f3e5b
Showing 1 changed file with 1 addition and 1 deletion.
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 83f3e5b

Please sign in to comment.