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 packages/config/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
"clean": "backstage-cli package clean"
},
"dependencies": {
"@backstage/types": "workspace:^",
"@backstage/types": "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.

critical

This change from workspace:^ to a specific version 0.1.1 is incorrect for this monorepo setup. It forces this package to use an older, published version of @backstage/types from npm, while other packages in the workspace will use the local version (1.1.0 as per packages/types/package.json). This will likely lead to type inconsistencies, build failures, or runtime errors. The dependency should remain linked to the workspace version to ensure consistency across the project.

Suggested change
"@backstage/types": "0.1.1",
"@backstage/types": "workspace:^",

"lodash": "^4.17.21"
},
"devDependencies": {
Expand Down
Loading