Skip to content
Open
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
8 changes: 4 additions & 4 deletions plugins/analytics-module-ga4/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@
"clean": "backstage-cli package clean"
},
"dependencies": {
"@backstage/config": "workspace:^",
"@backstage/core-components": "workspace:^",
"@backstage/core-plugin-api": "workspace:^",
"@backstage/theme": "workspace:^",
"@backstage/config": "0.1.1",
"@backstage/core-components": "0.1.0",
"@backstage/core-plugin-api": "0.1.0",
"@backstage/theme": "0.1.1",
Comment on lines +25 to +28

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 pinned to extremely outdated versions. For example, this change downgrades @backstage/core-plugin-api from a recent version (e.g., 1.5.3) to 0.1.0, which will cause major breakages. To maintain consistency in this monorepo, dependencies should use the workspace:^ protocol. This change should be reverted.

    "@backstage/config": "workspace:^",
    "@backstage/core-components": "workspace:^",
    "@backstage/core-plugin-api": "workspace:^",
    "@backstage/theme": "workspace:^"

"react-ga4": "^2.0.0",
"react-use": "^17.2.4"
},
Expand Down
Loading