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
10 changes: 5 additions & 5 deletions plugins/app-backend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -45,13 +45,13 @@
"clean": "backstage-cli package clean"
},
"dependencies": {
"@backstage/backend-common": "workspace:^",
"@backstage/backend-plugin-api": "workspace:^",
"@backstage/config": "workspace:^",
"@backstage/config-loader": "workspace:^",
"@backstage/backend-common": "0.24.1",
"@backstage/backend-plugin-api": "0.6.19",
"@backstage/config": "0.1.1",
"@backstage/config-loader": "0.1.1",
Comment on lines +48 to +51
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

These changes incorrectly replace the workspace:^ protocol with fixed versions. This breaks the yarn workspace setup for this monorepo, causing packages to be fetched from the npm registry instead of being linked to the local packages. This can lead to inconsistent dependencies and break the local development workflow. These dependencies should continue to use workspace:^ to correctly reference other packages within this monorepo.

Suggested change
"@backstage/backend-common": "0.24.1",
"@backstage/backend-plugin-api": "0.6.19",
"@backstage/config": "0.1.1",
"@backstage/config-loader": "0.1.1",
"@backstage/backend-common": "workspace:^",
"@backstage/backend-plugin-api": "workspace:^",
"@backstage/config": "workspace:^",
"@backstage/config-loader": "workspace:^",

"@backstage/types": "workspace:^",
"@types/express": "^4.17.6",
"express": "^4.17.1",
"express": "^4.22.0",
"express-promise-router": "^4.1.0",
"fs-extra": "10.1.0",
"globby": "^11.0.0",
Expand Down
Loading