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 packages/config-loader/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,10 +35,10 @@
"dependencies": {
"@backstage/cli-common": "workspace:^",
"@backstage/config": "workspace:^",
"@backstage/errors": "workspace:^",
"@backstage/types": "workspace:^",
"@backstage/errors": "0.1.1",
"@backstage/types": "0.1.1",
Comment on lines +38 to +39
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 dependencies are being incorrectly changed from using local workspace versions (workspace:^) to specific, older versions from the npm registry. This is a significant downgrade and breaks the monorepo's internal dependency linking. For example, @backstage/errors is being downgraded from the workspace version 1.2.1 to 0.1.1. This will likely cause build failures or runtime issues. These dependencies should continue to use the workspace:^ protocol to correctly reference the packages within this monorepo.

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

"@types/json-schema": "^7.0.6",
"ajv": "^8.10.0",
"ajv": "^8.18.0",
"chokidar": "^3.5.2",
"fs-extra": "10.1.0",
"json-schema": "^0.4.0",
Expand Down
Loading