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/example-todo-list-common/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
"postpack": "backstage-cli package postpack"
},
"dependencies": {
"@backstage/plugin-permission-common": "workspace:^"
"@backstage/plugin-permission-common": "0.1.0"
Copy link
Copy Markdown

Choose a reason for hiding this comment

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

critical

Changing the dependency from workspace:^ to a specific version 0.1.0 is incorrect for this monorepo setup. It breaks the yarn workspace linking, causing this package to use an old, published version of @backstage/plugin-permission-common instead of the local one (which is version 0.7.7 in this workspace). This will likely lead to build failures or runtime issues due to version mismatches. The workspace:^ protocol should be preserved to ensure local packages are correctly linked.

Suggested change
"@backstage/plugin-permission-common": "0.1.0"
"@backstage/plugin-permission-common": "workspace:^"

},
"devDependencies": {
"@backstage/cli": "workspace:^",
Expand Down
Loading