@backstage/plugin-app-visualizer 0.0.0-nightly-20240220020934 → 0.0.0-nightly-20240224020839

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 +13 -4
  2. package/package.json +18 -18
package/CHANGELOG.md CHANGED
@@ -1,14 +1,23 @@
1
1
  # @backstage/plugin-app-visualizer
2
2
 
3
- ## 0.0.0-nightly-20240220020934
3
+ ## 0.0.0-nightly-20240224020839
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies
8
+ - @backstage/core-components@0.0.0-nightly-20240224020839
9
+ - @backstage/core-plugin-api@0.0.0-nightly-20240224020839
10
+ - @backstage/frontend-plugin-api@0.0.0-nightly-20240224020839
11
+
12
+ ## 0.1.1
4
13
 
5
14
  ### Patch Changes
6
15
 
7
16
  - 8472188: Added or fixed the `repository` field in `package.json`.
8
17
  - Updated dependencies
9
- - @backstage/frontend-plugin-api@0.0.0-nightly-20240220020934
10
- - @backstage/core-components@0.0.0-nightly-20240220020934
11
- - @backstage/core-plugin-api@0.0.0-nightly-20240220020934
18
+ - @backstage/frontend-plugin-api@0.6.0
19
+ - @backstage/core-components@0.14.0
20
+ - @backstage/core-plugin-api@1.9.0
12
21
 
13
22
  ## 0.1.1-next.3
14
23
 
package/package.json CHANGED
@@ -1,7 +1,10 @@
1
1
  {
2
2
  "name": "@backstage/plugin-app-visualizer",
3
+ "version": "0.0.0-nightly-20240224020839",
3
4
  "description": "Visualizes the Backstage app structure",
4
- "version": "0.0.0-nightly-20240220020934",
5
+ "backstage": {
6
+ "role": "frontend-plugin"
7
+ },
5
8
  "publishConfig": {
6
9
  "access": "public"
7
10
  },
@@ -10,40 +13,37 @@
10
13
  "url": "https://github.com/backstage/backstage",
11
14
  "directory": "plugins/app-visualizer"
12
15
  },
13
- "backstage": {
14
- "role": "frontend-plugin"
15
- },
16
16
  "license": "Apache-2.0",
17
+ "sideEffects": false,
17
18
  "main": "./dist/index.esm.js",
18
19
  "types": "./dist/index.d.ts",
19
- "sideEffects": false,
20
+ "files": [
21
+ "dist"
22
+ ],
20
23
  "scripts": {
21
24
  "build": "backstage-cli package build",
22
- "start": "backstage-cli package start",
25
+ "clean": "backstage-cli package clean",
23
26
  "lint": "backstage-cli package lint",
24
- "test": "backstage-cli package test",
25
27
  "prepack": "backstage-cli package prepack",
26
28
  "postpack": "backstage-cli package postpack",
27
- "clean": "backstage-cli package clean"
29
+ "start": "backstage-cli package start",
30
+ "test": "backstage-cli package test"
28
31
  },
29
32
  "dependencies": {
30
- "@backstage/core-components": "^0.0.0-nightly-20240220020934",
31
- "@backstage/core-plugin-api": "^0.0.0-nightly-20240220020934",
32
- "@backstage/frontend-plugin-api": "^0.0.0-nightly-20240220020934",
33
+ "@backstage/core-components": "^0.0.0-nightly-20240224020839",
34
+ "@backstage/core-plugin-api": "^0.0.0-nightly-20240224020839",
35
+ "@backstage/frontend-plugin-api": "^0.0.0-nightly-20240224020839",
33
36
  "@material-ui/core": "^4.12.2",
34
37
  "@material-ui/icons": "^4.9.1"
35
38
  },
39
+ "devDependencies": {
40
+ "@backstage/cli": "^0.0.0-nightly-20240224020839",
41
+ "@types/react": "^16.13.1 || ^17.0.0"
42
+ },
36
43
  "peerDependencies": {
37
44
  "react": "^16.13.1 || ^17.0.0 || ^18.0.0",
38
45
  "react-dom": "^16.13.1 || ^17.0.0 || ^18.0.0",
39
46
  "react-router-dom": "6.0.0-beta.0 || ^6.3.0"
40
47
  },
41
- "devDependencies": {
42
- "@backstage/cli": "^0.0.0-nightly-20240220020934",
43
- "@types/react": "^16.13.1 || ^17.0.0"
44
- },
45
- "files": [
46
- "dist"
47
- ],
48
48
  "module": "./dist/index.esm.js"
49
49
  }