@backstage/plugin-devtools 0.1.17 → 0.1.18-next.1
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 +28 -0
- package/README.md +1 -1
- package/alpha/package.json +1 -1
- package/dist/alpha.d.ts +25 -13
- package/package.json +6 -6
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,33 @@
|
|
|
1
1
|
# @backstage/plugin-devtools
|
|
2
2
|
|
|
3
|
+
## 0.1.18-next.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies
|
|
8
|
+
- @backstage/frontend-plugin-api@0.8.0-next.1
|
|
9
|
+
- @backstage/core-compat-api@0.3.0-next.1
|
|
10
|
+
- @backstage/core-components@0.14.11-next.0
|
|
11
|
+
- @backstage/core-plugin-api@1.9.3
|
|
12
|
+
- @backstage/errors@1.2.4
|
|
13
|
+
- @backstage/plugin-devtools-common@0.1.12
|
|
14
|
+
- @backstage/plugin-permission-react@0.4.25
|
|
15
|
+
|
|
16
|
+
## 0.1.18-next.0
|
|
17
|
+
|
|
18
|
+
### Patch Changes
|
|
19
|
+
|
|
20
|
+
- fec8b57: Updated exports to use the new type parameters for extensions and extension blueprints.
|
|
21
|
+
- 019d9ad: Minor dockerfile syntax update
|
|
22
|
+
- Updated dependencies
|
|
23
|
+
- @backstage/frontend-plugin-api@0.8.0-next.0
|
|
24
|
+
- @backstage/core-compat-api@0.2.9-next.0
|
|
25
|
+
- @backstage/core-components@0.14.10
|
|
26
|
+
- @backstage/core-plugin-api@1.9.3
|
|
27
|
+
- @backstage/errors@1.2.4
|
|
28
|
+
- @backstage/plugin-devtools-common@0.1.12
|
|
29
|
+
- @backstage/plugin-permission-react@0.4.25
|
|
30
|
+
|
|
3
31
|
## 0.1.17
|
|
4
32
|
|
|
5
33
|
### Patch Changes
|
package/README.md
CHANGED
|
@@ -20,7 +20,7 @@ You may need to modify your Dockerfile to ensure `backstage.json` is copied into
|
|
|
20
20
|
```sh
|
|
21
21
|
WORKDIR /app
|
|
22
22
|
# This switches many Node.js dependencies to production mode.
|
|
23
|
-
ENV NODE_ENV
|
|
23
|
+
ENV NODE_ENV=production
|
|
24
24
|
|
|
25
25
|
# Then copy the rest of the backend bundle, along with any other files we might want (including backstage.json).
|
|
26
26
|
COPY --chown=node:node ... backstage.json ./
|
package/alpha/package.json
CHANGED
package/dist/alpha.d.ts
CHANGED
|
@@ -3,33 +3,45 @@ import * as _backstage_frontend_plugin_api from '@backstage/frontend-plugin-api'
|
|
|
3
3
|
import React__default from 'react';
|
|
4
4
|
|
|
5
5
|
/** @alpha */
|
|
6
|
-
declare const _default: _backstage_frontend_plugin_api.
|
|
6
|
+
declare const _default: _backstage_frontend_plugin_api.FrontendPlugin<{
|
|
7
7
|
root: _backstage_frontend_plugin_api.RouteRef<undefined>;
|
|
8
8
|
}, {}, {
|
|
9
|
-
"api:devtools": _backstage_frontend_plugin_api.ExtensionDefinition<{
|
|
9
|
+
"api:devtools": _backstage_frontend_plugin_api.ExtensionDefinition<{
|
|
10
10
|
kind: "api";
|
|
11
11
|
namespace: undefined;
|
|
12
12
|
name: undefined;
|
|
13
|
+
config: {};
|
|
14
|
+
configInput: {};
|
|
15
|
+
output: _backstage_frontend_plugin_api.ConfigurableExtensionDataRef<_backstage_frontend_plugin_api.AnyApiFactory, "core.api.factory", {}>;
|
|
16
|
+
inputs: {};
|
|
13
17
|
}>;
|
|
14
18
|
"page:devtools": _backstage_frontend_plugin_api.ExtensionDefinition<{
|
|
15
|
-
path: string | undefined;
|
|
16
|
-
}, {
|
|
17
|
-
path?: string | undefined;
|
|
18
|
-
}, _backstage_frontend_plugin_api.ConfigurableExtensionDataRef<React__default.JSX.Element, "core.reactElement", {}> | _backstage_frontend_plugin_api.ConfigurableExtensionDataRef<string, "core.routing.path", {}> | _backstage_frontend_plugin_api.ConfigurableExtensionDataRef<_backstage_frontend_plugin_api.RouteRef<_backstage_frontend_plugin_api.AnyRouteRefParams>, "core.routing.ref", {
|
|
19
|
-
optional: true;
|
|
20
|
-
}>, {}, {
|
|
21
19
|
kind: "page";
|
|
22
20
|
namespace: undefined;
|
|
23
21
|
name: undefined;
|
|
22
|
+
config: {
|
|
23
|
+
path: string | undefined;
|
|
24
|
+
};
|
|
25
|
+
configInput: {
|
|
26
|
+
path?: string | undefined;
|
|
27
|
+
};
|
|
28
|
+
output: _backstage_frontend_plugin_api.ConfigurableExtensionDataRef<React__default.JSX.Element, "core.reactElement", {}> | _backstage_frontend_plugin_api.ConfigurableExtensionDataRef<string, "core.routing.path", {}> | _backstage_frontend_plugin_api.ConfigurableExtensionDataRef<_backstage_frontend_plugin_api.RouteRef<_backstage_frontend_plugin_api.AnyRouteRefParams>, "core.routing.ref", {
|
|
29
|
+
optional: true;
|
|
30
|
+
}>;
|
|
31
|
+
inputs: {};
|
|
24
32
|
}>;
|
|
25
|
-
"nav-item:devtools": _backstage_frontend_plugin_api.ExtensionDefinition<{
|
|
26
|
-
title: string;
|
|
27
|
-
icon: _backstage_core_plugin_api.IconComponent;
|
|
28
|
-
routeRef: _backstage_frontend_plugin_api.RouteRef<undefined>;
|
|
29
|
-
}, "core.nav-item.target", {}>, {}, {
|
|
33
|
+
"nav-item:devtools": _backstage_frontend_plugin_api.ExtensionDefinition<{
|
|
30
34
|
kind: "nav-item";
|
|
31
35
|
namespace: undefined;
|
|
32
36
|
name: undefined;
|
|
37
|
+
config: {};
|
|
38
|
+
configInput: {};
|
|
39
|
+
output: _backstage_frontend_plugin_api.ConfigurableExtensionDataRef<{
|
|
40
|
+
title: string;
|
|
41
|
+
icon: _backstage_core_plugin_api.IconComponent;
|
|
42
|
+
routeRef: _backstage_frontend_plugin_api.RouteRef<undefined>;
|
|
43
|
+
}, "core.nav-item.target", {}>;
|
|
44
|
+
inputs: {};
|
|
33
45
|
}>;
|
|
34
46
|
}>;
|
|
35
47
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-devtools",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.18-next.1",
|
|
4
4
|
"backstage": {
|
|
5
5
|
"role": "frontend-plugin",
|
|
6
6
|
"pluginId": "devtools",
|
|
@@ -50,11 +50,11 @@
|
|
|
50
50
|
"test": "backstage-cli package test"
|
|
51
51
|
},
|
|
52
52
|
"dependencies": {
|
|
53
|
-
"@backstage/core-compat-api": "^0.
|
|
54
|
-
"@backstage/core-components": "^0.14.
|
|
53
|
+
"@backstage/core-compat-api": "^0.3.0-next.1",
|
|
54
|
+
"@backstage/core-components": "^0.14.11-next.0",
|
|
55
55
|
"@backstage/core-plugin-api": "^1.9.3",
|
|
56
56
|
"@backstage/errors": "^1.2.4",
|
|
57
|
-
"@backstage/frontend-plugin-api": "^0.
|
|
57
|
+
"@backstage/frontend-plugin-api": "^0.8.0-next.1",
|
|
58
58
|
"@backstage/plugin-devtools-common": "^0.1.12",
|
|
59
59
|
"@backstage/plugin-permission-react": "^0.4.25",
|
|
60
60
|
"@material-ui/core": "^4.9.13",
|
|
@@ -64,8 +64,8 @@
|
|
|
64
64
|
"react-use": "^17.2.4"
|
|
65
65
|
},
|
|
66
66
|
"devDependencies": {
|
|
67
|
-
"@backstage/cli": "^0.27.
|
|
68
|
-
"@backstage/dev-utils": "^1.0.
|
|
67
|
+
"@backstage/cli": "^0.27.1-next.1",
|
|
68
|
+
"@backstage/dev-utils": "^1.0.38-next.1",
|
|
69
69
|
"@testing-library/jest-dom": "^6.0.0"
|
|
70
70
|
},
|
|
71
71
|
"peerDependencies": {
|