@backstage/plugin-app-visualizer 0.0.0-nightly-20241001023625 → 0.0.0-nightly-20241003023252

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/CHANGELOG.md +15 -4
  2. package/package.json +16 -7
package/CHANGELOG.md CHANGED
@@ -1,13 +1,24 @@
1
1
  # @backstage/plugin-app-visualizer
2
2
 
3
- ## 0.0.0-nightly-20241001023625
3
+ ## 0.0.0-nightly-20241003023252
4
4
 
5
5
  ### Patch Changes
6
6
 
7
+ - e969dc7: Move `@types/react` to a peer dependency.
7
8
  - Updated dependencies
8
- - @backstage/core-components@0.0.0-nightly-20241001023625
9
- - @backstage/frontend-plugin-api@0.0.0-nightly-20241001023625
10
- - @backstage/core-plugin-api@0.0.0-nightly-20241001023625
9
+ - @backstage/core-components@0.0.0-nightly-20241003023252
10
+ - @backstage/frontend-plugin-api@0.0.0-nightly-20241003023252
11
+ - @backstage/core-plugin-api@0.0.0-nightly-20241003023252
12
+
13
+ ## 0.1.11-next.1
14
+
15
+ ### Patch Changes
16
+
17
+ - e969dc7: Move `@types/react` to a peer dependency.
18
+ - Updated dependencies
19
+ - @backstage/core-components@0.15.1-next.1
20
+ - @backstage/frontend-plugin-api@0.9.0-next.1
21
+ - @backstage/core-plugin-api@1.10.0-next.1
11
22
 
12
23
  ## 0.1.11-next.0
13
24
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@backstage/plugin-app-visualizer",
3
- "version": "0.0.0-nightly-20241001023625",
3
+ "version": "0.0.0-nightly-20241003023252",
4
4
  "description": "Visualizes the Backstage app structure",
5
5
  "backstage": {
6
6
  "role": "frontend-plugin",
@@ -34,20 +34,29 @@
34
34
  "test": "backstage-cli package test"
35
35
  },
36
36
  "dependencies": {
37
- "@backstage/core-components": "0.0.0-nightly-20241001023625",
38
- "@backstage/core-plugin-api": "0.0.0-nightly-20241001023625",
39
- "@backstage/frontend-plugin-api": "0.0.0-nightly-20241001023625",
37
+ "@backstage/core-components": "0.0.0-nightly-20241003023252",
38
+ "@backstage/core-plugin-api": "0.0.0-nightly-20241003023252",
39
+ "@backstage/frontend-plugin-api": "0.0.0-nightly-20241003023252",
40
40
  "@material-ui/core": "^4.12.2",
41
- "@material-ui/icons": "^4.9.1",
42
- "@types/react": "^16.13.1 || ^17.0.0"
41
+ "@material-ui/icons": "^4.9.1"
43
42
  },
44
43
  "devDependencies": {
45
- "@backstage/cli": "0.0.0-nightly-20241001023625"
44
+ "@backstage/cli": "0.0.0-nightly-20241003023252",
45
+ "@types/react": "^18.0.0",
46
+ "react": "^18.0.2",
47
+ "react-dom": "^18.0.2",
48
+ "react-router-dom": "^6.3.0"
46
49
  },
47
50
  "peerDependencies": {
51
+ "@types/react": "^16.13.1 || ^17.0.0 || ^18.0.0",
48
52
  "react": "^16.13.1 || ^17.0.0 || ^18.0.0",
49
53
  "react-dom": "^16.13.1 || ^17.0.0 || ^18.0.0",
50
54
  "react-router-dom": "6.0.0-beta.0 || ^6.3.0"
51
55
  },
56
+ "peerDependenciesMeta": {
57
+ "@types/react": {
58
+ "optional": true
59
+ }
60
+ },
52
61
  "module": "./dist/index.esm.js"
53
62
  }