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
6 changes: 3 additions & 3 deletions plugins/rollbar-backend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,12 +33,12 @@
"clean": "backstage-cli package clean"
},
"dependencies": {
"@backstage/backend-common": "workspace:^",
"@backstage/config": "workspace:^",
"@backstage/backend-common": "0.24.1",
"@backstage/config": "0.1.1",
Comment on lines +36 to +37
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

The versions for @backstage/backend-common and @backstage/config have been pinned to specific versions, replacing the workspace:^ protocol. In this monorepo, internal packages should be referenced using workspace:^ to ensure they resolve to the local packages within the workspace. Pinning them to versions from the npm registry can lead to version conflicts, unexpected behavior, and break the build. This change should be reverted to use the workspace protocol.

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

"@types/express": "^4.17.6",
"compression": "^1.7.4",
"cors": "^2.8.5",
"express": "^4.17.1",
"express": "^4.22.0",
"express-promise-router": "^4.1.0",
"fs-extra": "10.1.0",
"lodash": "^4.17.21",
Expand Down
Loading