Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion plugins/catalog-backend-module-github/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
"@backstage/backend-plugin-api": "workspace:^",
"@backstage/backend-tasks": "workspace:^",
"@backstage/catalog-client": "workspace:^",
"@backstage/catalog-model": "workspace:^",
"@backstage/catalog-model": "0.1.1",
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This change replaces the workspace reference workspace:^ with a fixed external version 0.1.1 for the @backstage/catalog-model dependency. This breaks the monorepo pattern where packages use local workspace versions rather than external npm packages.

In a Backstage monorepo, dependencies between internal packages should use the workspace:^ syntax to ensure:

  1. Consistent versioning across the codebase
  2. Local development changes are immediately reflected
  3. Proper integration testing between components

Changing to a fixed external version may introduce version conflicts with other packages that expect to use the workspace version. Please maintain the original workspace:^ reference to preserve the monorepo integrity.

Suggested change
"@backstage/catalog-model": "0.1.1",
"@backstage/catalog-model": "workspace:^",

Spotted by Diamond

Is this helpful? React 👍 or 👎 to let us know.

"@backstage/config": "workspace:^",
"@backstage/errors": "workspace:^",
"@backstage/integration": "workspace:^",
Expand Down
Loading