Skip to content

Commit

Permalink
release: 0.15.2 (#149)
Browse files Browse the repository at this point in the history
### Description

This release includes a fix to the backage.pluginPackages variable in
package.json that was preventing the plugin from being installed in
certain installations of backstage

## Acknowledgement

By submitting this pull request, I confirm that you can use, modify,
copy, and redistribute this contribution, under the terms of your
choice.

**Disclaimer:** We value your time and bandwidth. As such, any pull
requests created on non-triaged issues might not be successful.
  • Loading branch information
tamimkh authored Oct 30, 2024
2 parents 2e9603a + 2df0c99 commit cd6ed05
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 7 deletions.
6 changes: 4 additions & 2 deletions .yarnrc.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
nodeLinker: node-modules

npmRegistryServer: https://registry.npmjs.org/
npmRegistryServer: "https://registry.npmjs.org/"

npmScopes:
pagerduty:
npmAlwaysAuth: true
npmAuthToken: NPM_TOKEN
npmAuthToken: NPM_TOKEN

yarnPath: .yarn/releases/yarn-3.6.3.cjs
12 changes: 9 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,21 @@
"backstage": {
"role": "frontend-plugin",
"pluginId": "pagerduty",
"pluginPackages": "pagerduty"
"pluginPackages": [
"@pagerduty/backstage-plugin",
"@pagerduty/backstage-plugin-common",
"@pagerduty/backstage-plugin-backend"
]
},
"homepage": "https://github.com/pagerduty/backstage-plugin",
"repository": {
"type": "git",
"url": "https://github.com/pagerduty/backstage-plugin.git"
"url": "https://github.com/pagerduty/backstage-plugin.git",
"directory": "."
},
"keywords": [
"backstage",
"plugin",
"pagerduty"
],
"scripts": {
Expand Down Expand Up @@ -50,7 +56,7 @@
"@mui/icons-material": "^5.15.19",
"@mui/material": "^5.15.19",
"@mui/x-date-pickers": "^7.6.1",
"@pagerduty/backstage-plugin-common": "0.2.1",
"@pagerduty/backstage-plugin-common": "^0.2.1",
"@tanstack/react-query": "^5.40.1",
"classnames": "^2.2.6",
"luxon": "^3.4.1",
Expand Down
4 changes: 2 additions & 2 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -4393,7 +4393,7 @@ __metadata:
languageName: node
linkType: hard

"@pagerduty/backstage-plugin-common@npm:0.2.1":
"@pagerduty/backstage-plugin-common@npm:^0.2.1":
version: 0.2.1
resolution: "@pagerduty/backstage-plugin-common@npm:0.2.1"
checksum: 76233c2162d8e7bd3479e13652042cf949911be065f0bf92c5823cbc03c122b8ff49938ca36ab8449da800de7dd9c85724f70e3ff5323e77ef879478394115c9
Expand Down Expand Up @@ -4425,7 +4425,7 @@ __metadata:
"@mui/icons-material": ^5.15.19
"@mui/material": ^5.15.19
"@mui/x-date-pickers": ^7.6.1
"@pagerduty/backstage-plugin-common": 0.2.1
"@pagerduty/backstage-plugin-common": ^0.2.1
"@tanstack/react-query": ^5.40.1
"@testing-library/dom": ^8.0.0
"@testing-library/jest-dom": ^5.10.1
Expand Down

0 comments on commit cd6ed05

Please sign in to comment.