@backstage/plugin-app-visualizer 0.1.19 → 0.1.20-next.0
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.
- package/CHANGELOG.md +8 -0
- package/dist/package.json.esm.js +81 -0
- package/dist/package.json.esm.js.map +1 -0
- package/dist/plugin.esm.js +1 -0
- package/dist/plugin.esm.js.map +1 -1
- package/package.json +6 -6
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# @backstage/plugin-app-visualizer
|
|
2
2
|
|
|
3
|
+
## 0.1.20-next.0
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 18c64e9: Added the `info.packageJson` option to the plugin instance for the new frontend system.
|
|
8
|
+
- Updated dependencies
|
|
9
|
+
- @backstage/frontend-plugin-api@0.10.3-next.0
|
|
10
|
+
|
|
3
11
|
## 0.1.19
|
|
4
12
|
|
|
5
13
|
### Patch Changes
|
|
@@ -0,0 +1,81 @@
|
|
|
1
|
+
var name = "@backstage/plugin-app-visualizer";
|
|
2
|
+
var version = "0.1.20-next.0";
|
|
3
|
+
var description = "Visualizes the Backstage app structure";
|
|
4
|
+
var backstage = {
|
|
5
|
+
role: "frontend-plugin",
|
|
6
|
+
pluginId: "app-visualizer",
|
|
7
|
+
pluginPackages: [
|
|
8
|
+
"@backstage/plugin-app-visualizer"
|
|
9
|
+
]
|
|
10
|
+
};
|
|
11
|
+
var publishConfig = {
|
|
12
|
+
access: "public"
|
|
13
|
+
};
|
|
14
|
+
var repository = {
|
|
15
|
+
type: "git",
|
|
16
|
+
url: "https://github.com/backstage/backstage",
|
|
17
|
+
directory: "plugins/app-visualizer"
|
|
18
|
+
};
|
|
19
|
+
var license = "Apache-2.0";
|
|
20
|
+
var sideEffects = false;
|
|
21
|
+
var main = "src/index.ts";
|
|
22
|
+
var types = "src/index.ts";
|
|
23
|
+
var files = [
|
|
24
|
+
"dist"
|
|
25
|
+
];
|
|
26
|
+
var scripts = {
|
|
27
|
+
build: "backstage-cli package build",
|
|
28
|
+
clean: "backstage-cli package clean",
|
|
29
|
+
lint: "backstage-cli package lint",
|
|
30
|
+
prepack: "backstage-cli package prepack",
|
|
31
|
+
postpack: "backstage-cli package postpack",
|
|
32
|
+
start: "backstage-cli package start",
|
|
33
|
+
test: "backstage-cli package test"
|
|
34
|
+
};
|
|
35
|
+
var dependencies = {
|
|
36
|
+
"@backstage/core-components": "workspace:^",
|
|
37
|
+
"@backstage/core-plugin-api": "workspace:^",
|
|
38
|
+
"@backstage/frontend-plugin-api": "workspace:^",
|
|
39
|
+
"@material-ui/core": "^4.12.2",
|
|
40
|
+
"@material-ui/icons": "^4.9.1"
|
|
41
|
+
};
|
|
42
|
+
var devDependencies = {
|
|
43
|
+
"@backstage/cli": "workspace:^",
|
|
44
|
+
"@backstage/frontend-defaults": "workspace:^",
|
|
45
|
+
"@types/react": "^18.0.0",
|
|
46
|
+
react: "^18.0.2",
|
|
47
|
+
"react-dom": "^18.0.2",
|
|
48
|
+
"react-router-dom": "^6.3.0"
|
|
49
|
+
};
|
|
50
|
+
var peerDependencies = {
|
|
51
|
+
"@types/react": "^17.0.0 || ^18.0.0",
|
|
52
|
+
react: "^17.0.0 || ^18.0.0",
|
|
53
|
+
"react-dom": "^17.0.0 || ^18.0.0",
|
|
54
|
+
"react-router-dom": "^6.3.0"
|
|
55
|
+
};
|
|
56
|
+
var peerDependenciesMeta = {
|
|
57
|
+
"@types/react": {
|
|
58
|
+
optional: true
|
|
59
|
+
}
|
|
60
|
+
};
|
|
61
|
+
var _package = {
|
|
62
|
+
name: name,
|
|
63
|
+
version: version,
|
|
64
|
+
description: description,
|
|
65
|
+
backstage: backstage,
|
|
66
|
+
publishConfig: publishConfig,
|
|
67
|
+
repository: repository,
|
|
68
|
+
license: license,
|
|
69
|
+
sideEffects: sideEffects,
|
|
70
|
+
main: main,
|
|
71
|
+
types: types,
|
|
72
|
+
files: files,
|
|
73
|
+
scripts: scripts,
|
|
74
|
+
dependencies: dependencies,
|
|
75
|
+
devDependencies: devDependencies,
|
|
76
|
+
peerDependencies: peerDependencies,
|
|
77
|
+
peerDependenciesMeta: peerDependenciesMeta
|
|
78
|
+
};
|
|
79
|
+
|
|
80
|
+
export { backstage, _package as default, dependencies, description, devDependencies, files, license, main, name, peerDependencies, peerDependenciesMeta, publishConfig, repository, scripts, sideEffects, types, version };
|
|
81
|
+
//# sourceMappingURL=package.json.esm.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"package.json.esm.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
package/dist/plugin.esm.js
CHANGED
|
@@ -19,6 +19,7 @@ const appVisualizerNavItem = NavItemBlueprint.make({
|
|
|
19
19
|
});
|
|
20
20
|
const visualizerPlugin = createFrontendPlugin({
|
|
21
21
|
pluginId: "app-visualizer",
|
|
22
|
+
info: { packageJson: () => import('./package.json.esm.js') },
|
|
22
23
|
extensions: [appVisualizerPage, appVisualizerNavItem]
|
|
23
24
|
});
|
|
24
25
|
|
package/dist/plugin.esm.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"plugin.esm.js","sources":["../src/plugin.tsx"],"sourcesContent":["/*\n * Copyright 2023 The Backstage Authors\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport {\n createFrontendPlugin,\n createRouteRef,\n NavItemBlueprint,\n PageBlueprint,\n} from '@backstage/frontend-plugin-api';\nimport VisualizerIcon from '@material-ui/icons/Visibility';\n\nconst rootRouteRef = createRouteRef();\n\nconst appVisualizerPage = PageBlueprint.make({\n params: {\n defaultPath: '/visualizer',\n routeRef: rootRouteRef,\n loader: () =>\n import('./components/AppVisualizerPage').then(m => (\n <m.AppVisualizerPage />\n )),\n },\n});\n\nexport const appVisualizerNavItem = NavItemBlueprint.make({\n params: {\n title: 'Visualizer',\n icon: VisualizerIcon,\n routeRef: rootRouteRef,\n },\n});\n\n/** @public */\nexport const visualizerPlugin = createFrontendPlugin({\n pluginId: 'app-visualizer',\n extensions: [appVisualizerPage, appVisualizerNavItem],\n});\n"],"names":[],"mappings":";;;;AAwBA,MAAM,eAAe,cAAe,EAAA;AAEpC,MAAM,iBAAA,GAAoB,cAAc,IAAK,CAAA;AAAA,EAC3C,MAAQ,EAAA;AAAA,IACN,WAAa,EAAA,aAAA;AAAA,IACb,QAAU,EAAA,YAAA;AAAA,IACV,MAAA,EAAQ,MACN,OAAO,6CAAgC,CAAA,CAAE,IAAK,CAAA,CAAA,CAAA,qBAC3C,GAAA,CAAA,CAAA,CAAE,iBAAF,EAAA,EAAoB,CACtB;AAAA;AAEP,CAAC,CAAA;AAEY,MAAA,oBAAA,GAAuB,iBAAiB,IAAK,CAAA;AAAA,EACxD,MAAQ,EAAA;AAAA,IACN,KAAO,EAAA,YAAA;AAAA,IACP,IAAM,EAAA,cAAA;AAAA,IACN,QAAU,EAAA;AAAA;AAEd,CAAC;AAGM,MAAM,mBAAmB,oBAAqB,CAAA;AAAA,EACnD,QAAU,EAAA,gBAAA;AAAA,EACV,UAAA,EAAY,CAAC,iBAAA,EAAmB,oBAAoB;AACtD,CAAC;;;;"}
|
|
1
|
+
{"version":3,"file":"plugin.esm.js","sources":["../src/plugin.tsx"],"sourcesContent":["/*\n * Copyright 2023 The Backstage Authors\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport {\n createFrontendPlugin,\n createRouteRef,\n NavItemBlueprint,\n PageBlueprint,\n} from '@backstage/frontend-plugin-api';\nimport VisualizerIcon from '@material-ui/icons/Visibility';\n\nconst rootRouteRef = createRouteRef();\n\nconst appVisualizerPage = PageBlueprint.make({\n params: {\n defaultPath: '/visualizer',\n routeRef: rootRouteRef,\n loader: () =>\n import('./components/AppVisualizerPage').then(m => (\n <m.AppVisualizerPage />\n )),\n },\n});\n\nexport const appVisualizerNavItem = NavItemBlueprint.make({\n params: {\n title: 'Visualizer',\n icon: VisualizerIcon,\n routeRef: rootRouteRef,\n },\n});\n\n/** @public */\nexport const visualizerPlugin = createFrontendPlugin({\n pluginId: 'app-visualizer',\n info: { packageJson: () => import('../package.json') },\n extensions: [appVisualizerPage, appVisualizerNavItem],\n});\n"],"names":[],"mappings":";;;;AAwBA,MAAM,eAAe,cAAe,EAAA;AAEpC,MAAM,iBAAA,GAAoB,cAAc,IAAK,CAAA;AAAA,EAC3C,MAAQ,EAAA;AAAA,IACN,WAAa,EAAA,aAAA;AAAA,IACb,QAAU,EAAA,YAAA;AAAA,IACV,MAAA,EAAQ,MACN,OAAO,6CAAgC,CAAA,CAAE,IAAK,CAAA,CAAA,CAAA,qBAC3C,GAAA,CAAA,CAAA,CAAE,iBAAF,EAAA,EAAoB,CACtB;AAAA;AAEP,CAAC,CAAA;AAEY,MAAA,oBAAA,GAAuB,iBAAiB,IAAK,CAAA;AAAA,EACxD,MAAQ,EAAA;AAAA,IACN,KAAO,EAAA,YAAA;AAAA,IACP,IAAM,EAAA,cAAA;AAAA,IACN,QAAU,EAAA;AAAA;AAEd,CAAC;AAGM,MAAM,mBAAmB,oBAAqB,CAAA;AAAA,EACnD,QAAU,EAAA,gBAAA;AAAA,EACV,MAAM,EAAE,WAAA,EAAa,MAAM,OAAO,uBAAiB,CAAE,EAAA;AAAA,EACrD,UAAA,EAAY,CAAC,iBAAA,EAAmB,oBAAoB;AACtD,CAAC;;;;"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-app-visualizer",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.20-next.0",
|
|
4
4
|
"description": "Visualizes the Backstage app structure",
|
|
5
5
|
"backstage": {
|
|
6
6
|
"role": "frontend-plugin",
|
|
@@ -37,15 +37,15 @@
|
|
|
37
37
|
"test": "backstage-cli package test"
|
|
38
38
|
},
|
|
39
39
|
"dependencies": {
|
|
40
|
-
"@backstage/core-components": "
|
|
41
|
-
"@backstage/core-plugin-api": "
|
|
42
|
-
"@backstage/frontend-plugin-api": "
|
|
40
|
+
"@backstage/core-components": "0.17.2",
|
|
41
|
+
"@backstage/core-plugin-api": "1.10.7",
|
|
42
|
+
"@backstage/frontend-plugin-api": "0.10.3-next.0",
|
|
43
43
|
"@material-ui/core": "^4.12.2",
|
|
44
44
|
"@material-ui/icons": "^4.9.1"
|
|
45
45
|
},
|
|
46
46
|
"devDependencies": {
|
|
47
|
-
"@backstage/cli": "
|
|
48
|
-
"@backstage/frontend-defaults": "
|
|
47
|
+
"@backstage/cli": "0.32.1",
|
|
48
|
+
"@backstage/frontend-defaults": "0.2.3-next.0",
|
|
49
49
|
"@types/react": "^18.0.0",
|
|
50
50
|
"react": "^18.0.2",
|
|
51
51
|
"react-dom": "^18.0.2",
|