@backstage/plugin-catalog-import 0.13.0-next.3 → 0.13.1-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 +35 -0
- package/dist/alpha.esm.js +1 -0
- package/dist/alpha.esm.js.map +1 -1
- package/dist/package.json.esm.js +132 -0
- package/dist/package.json.esm.js.map +1 -0
- package/package.json +16 -16
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,40 @@
|
|
|
1
1
|
# @backstage/plugin-catalog-import
|
|
2
2
|
|
|
3
|
+
## 0.13.1-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
|
+
- @backstage/core-compat-api@0.4.3-next.0
|
|
11
|
+
- @backstage/plugin-catalog-react@1.18.1-next.0
|
|
12
|
+
- @backstage/integration-react@1.2.7
|
|
13
|
+
|
|
14
|
+
## 0.13.0
|
|
15
|
+
|
|
16
|
+
### Minor Changes
|
|
17
|
+
|
|
18
|
+
- e2fd549: **BREAKING**: `generateStepper` and `defaultGenerateStepper` now require a translation argument to be passed through for supporting translations.
|
|
19
|
+
|
|
20
|
+
### Patch Changes
|
|
21
|
+
|
|
22
|
+
- fb58f20: Internal update to use the new `pluginId` option of `createFrontendPlugin`.
|
|
23
|
+
- 66a1140: Add i18n support for `catalog-import` plugin.
|
|
24
|
+
- Updated dependencies
|
|
25
|
+
- @backstage/frontend-plugin-api@0.10.2
|
|
26
|
+
- @backstage/integration@1.17.0
|
|
27
|
+
- @backstage/core-components@0.17.2
|
|
28
|
+
- @backstage/catalog-model@1.7.4
|
|
29
|
+
- @backstage/core-compat-api@0.4.2
|
|
30
|
+
- @backstage/plugin-catalog-react@1.18.0
|
|
31
|
+
- @backstage/core-plugin-api@1.10.7
|
|
32
|
+
- @backstage/catalog-client@1.10.0
|
|
33
|
+
- @backstage/config@1.3.2
|
|
34
|
+
- @backstage/integration-react@1.2.7
|
|
35
|
+
- @backstage/errors@1.2.7
|
|
36
|
+
- @backstage/plugin-catalog-common@1.1.4
|
|
37
|
+
|
|
3
38
|
## 0.13.0-next.3
|
|
4
39
|
|
|
5
40
|
### Patch Changes
|
package/dist/alpha.esm.js
CHANGED
|
@@ -50,6 +50,7 @@ const catalogImportApi = ApiBlueprint.make({
|
|
|
50
50
|
});
|
|
51
51
|
var alpha = createFrontendPlugin({
|
|
52
52
|
pluginId: "catalog-import",
|
|
53
|
+
info: { packageJson: () => import('./package.json.esm.js') },
|
|
53
54
|
extensions: [catalogImportApi, catalogImportPage],
|
|
54
55
|
routes: {
|
|
55
56
|
importPage: convertLegacyRouteRef(rootRouteRef)
|
package/dist/alpha.esm.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"alpha.esm.js","sources":["../src/alpha.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 configApiRef,\n createApiFactory,\n discoveryApiRef,\n fetchApiRef,\n} from '@backstage/core-plugin-api';\nimport {\n compatWrapper,\n convertLegacyRouteRef,\n} from '@backstage/core-compat-api';\nimport {\n createFrontendPlugin,\n PageBlueprint,\n ApiBlueprint,\n} from '@backstage/frontend-plugin-api';\nimport {\n scmAuthApiRef,\n scmIntegrationsApiRef,\n} from '@backstage/integration-react';\nimport { CatalogImportClient, catalogImportApiRef } from './api';\nimport { rootRouteRef } from './plugin';\nimport { catalogApiRef } from '@backstage/plugin-catalog-react';\n\nexport * from './translation';\n\n// TODO: It's currently possible to override the import page with a custom one. We need to decide\n// whether this type of override is typically done with an input or by overriding the entire extension.\nconst catalogImportPage = PageBlueprint.make({\n params: {\n defaultPath: '/catalog-import',\n routeRef: convertLegacyRouteRef(rootRouteRef),\n loader: () =>\n import('./components/ImportPage').then(m =>\n compatWrapper(<m.ImportPage />),\n ),\n },\n});\n\nconst catalogImportApi = ApiBlueprint.make({\n params: {\n factory: createApiFactory({\n api: catalogImportApiRef,\n deps: {\n discoveryApi: discoveryApiRef,\n scmAuthApi: scmAuthApiRef,\n fetchApi: fetchApiRef,\n scmIntegrationsApi: scmIntegrationsApiRef,\n catalogApi: catalogApiRef,\n configApi: configApiRef,\n },\n factory: ({\n discoveryApi,\n scmAuthApi,\n fetchApi,\n scmIntegrationsApi,\n catalogApi,\n configApi,\n }) =>\n new CatalogImportClient({\n discoveryApi,\n scmAuthApi,\n scmIntegrationsApi,\n fetchApi,\n catalogApi,\n configApi,\n }),\n }),\n },\n});\n\n/** @alpha */\nexport default createFrontendPlugin({\n pluginId: 'catalog-import',\n extensions: [catalogImportApi, catalogImportPage],\n routes: {\n importPage: convertLegacyRouteRef(rootRouteRef),\n },\n});\n\nexport { catalogImportTranslationRef } from './translation';\n"],"names":[],"mappings":";;;;;;;;;;;AA2CA,MAAM,iBAAA,GAAoB,cAAc,IAAK,CAAA;AAAA,EAC3C,MAAQ,EAAA;AAAA,IACN,WAAa,EAAA,iBAAA;AAAA,IACb,QAAA,EAAU,sBAAsB,YAAY,CAAA;AAAA,IAC5C,MAAQ,EAAA,MACN,OAAO,sCAAyB,CAAE,CAAA,IAAA;AAAA,MAAK,OACrC,aAAc,iBAAA,GAAA,CAAC,CAAE,CAAA,UAAA,EAAF,EAAa,CAAE;AAAA;AAChC;AAEN,CAAC,CAAA;AAED,MAAM,gBAAA,GAAmB,aAAa,IAAK,CAAA;AAAA,EACzC,MAAQ,EAAA;AAAA,IACN,SAAS,gBAAiB,CAAA;AAAA,MACxB,GAAK,EAAA,mBAAA;AAAA,MACL,IAAM,EAAA;AAAA,QACJ,YAAc,EAAA,eAAA;AAAA,QACd,UAAY,EAAA,aAAA;AAAA,QACZ,QAAU,EAAA,WAAA;AAAA,QACV,kBAAoB,EAAA,qBAAA;AAAA,QACpB,UAAY,EAAA,aAAA;AAAA,QACZ,SAAW,EAAA;AAAA,OACb;AAAA,MACA,SAAS,CAAC;AAAA,QACR,YAAA;AAAA,QACA,UAAA;AAAA,QACA,QAAA;AAAA,QACA,kBAAA;AAAA,QACA,UAAA;AAAA,QACA;AAAA,OACF,KACE,IAAI,mBAAoB,CAAA;AAAA,QACtB,YAAA;AAAA,QACA,UAAA;AAAA,QACA,kBAAA;AAAA,QACA,QAAA;AAAA,QACA,UAAA;AAAA,QACA;AAAA,OACD;AAAA,KACJ;AAAA;AAEL,CAAC,CAAA;AAGD,YAAe,oBAAqB,CAAA;AAAA,EAClC,QAAU,EAAA,gBAAA;AAAA,EACV,UAAA,EAAY,CAAC,gBAAA,EAAkB,iBAAiB,CAAA;AAAA,EAChD,MAAQ,EAAA;AAAA,IACN,UAAA,EAAY,sBAAsB,YAAY;AAAA;AAElD,CAAC,CAAA;;;;"}
|
|
1
|
+
{"version":3,"file":"alpha.esm.js","sources":["../src/alpha.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 configApiRef,\n createApiFactory,\n discoveryApiRef,\n fetchApiRef,\n} from '@backstage/core-plugin-api';\nimport {\n compatWrapper,\n convertLegacyRouteRef,\n} from '@backstage/core-compat-api';\nimport {\n createFrontendPlugin,\n PageBlueprint,\n ApiBlueprint,\n} from '@backstage/frontend-plugin-api';\nimport {\n scmAuthApiRef,\n scmIntegrationsApiRef,\n} from '@backstage/integration-react';\nimport { CatalogImportClient, catalogImportApiRef } from './api';\nimport { rootRouteRef } from './plugin';\nimport { catalogApiRef } from '@backstage/plugin-catalog-react';\n\nexport * from './translation';\n\n// TODO: It's currently possible to override the import page with a custom one. We need to decide\n// whether this type of override is typically done with an input or by overriding the entire extension.\nconst catalogImportPage = PageBlueprint.make({\n params: {\n defaultPath: '/catalog-import',\n routeRef: convertLegacyRouteRef(rootRouteRef),\n loader: () =>\n import('./components/ImportPage').then(m =>\n compatWrapper(<m.ImportPage />),\n ),\n },\n});\n\nconst catalogImportApi = ApiBlueprint.make({\n params: {\n factory: createApiFactory({\n api: catalogImportApiRef,\n deps: {\n discoveryApi: discoveryApiRef,\n scmAuthApi: scmAuthApiRef,\n fetchApi: fetchApiRef,\n scmIntegrationsApi: scmIntegrationsApiRef,\n catalogApi: catalogApiRef,\n configApi: configApiRef,\n },\n factory: ({\n discoveryApi,\n scmAuthApi,\n fetchApi,\n scmIntegrationsApi,\n catalogApi,\n configApi,\n }) =>\n new CatalogImportClient({\n discoveryApi,\n scmAuthApi,\n scmIntegrationsApi,\n fetchApi,\n catalogApi,\n configApi,\n }),\n }),\n },\n});\n\n/** @alpha */\nexport default createFrontendPlugin({\n pluginId: 'catalog-import',\n info: { packageJson: () => import('../package.json') },\n extensions: [catalogImportApi, catalogImportPage],\n routes: {\n importPage: convertLegacyRouteRef(rootRouteRef),\n },\n});\n\nexport { catalogImportTranslationRef } from './translation';\n"],"names":[],"mappings":";;;;;;;;;;;AA2CA,MAAM,iBAAA,GAAoB,cAAc,IAAK,CAAA;AAAA,EAC3C,MAAQ,EAAA;AAAA,IACN,WAAa,EAAA,iBAAA;AAAA,IACb,QAAA,EAAU,sBAAsB,YAAY,CAAA;AAAA,IAC5C,MAAQ,EAAA,MACN,OAAO,sCAAyB,CAAE,CAAA,IAAA;AAAA,MAAK,OACrC,aAAc,iBAAA,GAAA,CAAC,CAAE,CAAA,UAAA,EAAF,EAAa,CAAE;AAAA;AAChC;AAEN,CAAC,CAAA;AAED,MAAM,gBAAA,GAAmB,aAAa,IAAK,CAAA;AAAA,EACzC,MAAQ,EAAA;AAAA,IACN,SAAS,gBAAiB,CAAA;AAAA,MACxB,GAAK,EAAA,mBAAA;AAAA,MACL,IAAM,EAAA;AAAA,QACJ,YAAc,EAAA,eAAA;AAAA,QACd,UAAY,EAAA,aAAA;AAAA,QACZ,QAAU,EAAA,WAAA;AAAA,QACV,kBAAoB,EAAA,qBAAA;AAAA,QACpB,UAAY,EAAA,aAAA;AAAA,QACZ,SAAW,EAAA;AAAA,OACb;AAAA,MACA,SAAS,CAAC;AAAA,QACR,YAAA;AAAA,QACA,UAAA;AAAA,QACA,QAAA;AAAA,QACA,kBAAA;AAAA,QACA,UAAA;AAAA,QACA;AAAA,OACF,KACE,IAAI,mBAAoB,CAAA;AAAA,QACtB,YAAA;AAAA,QACA,UAAA;AAAA,QACA,kBAAA;AAAA,QACA,QAAA;AAAA,QACA,UAAA;AAAA,QACA;AAAA,OACD;AAAA,KACJ;AAAA;AAEL,CAAC,CAAA;AAGD,YAAe,oBAAqB,CAAA;AAAA,EAClC,QAAU,EAAA,gBAAA;AAAA,EACV,MAAM,EAAE,WAAA,EAAa,MAAM,OAAO,uBAAiB,CAAE,EAAA;AAAA,EACrD,UAAA,EAAY,CAAC,gBAAA,EAAkB,iBAAiB,CAAA;AAAA,EAChD,MAAQ,EAAA;AAAA,IACN,UAAA,EAAY,sBAAsB,YAAY;AAAA;AAElD,CAAC,CAAA;;;;"}
|
|
@@ -0,0 +1,132 @@
|
|
|
1
|
+
var name = "@backstage/plugin-catalog-import";
|
|
2
|
+
var version = "0.13.1-next.0";
|
|
3
|
+
var description = "A Backstage plugin the helps you import entities into your catalog";
|
|
4
|
+
var backstage = {
|
|
5
|
+
role: "frontend-plugin",
|
|
6
|
+
pluginId: "catalog-import",
|
|
7
|
+
pluginPackages: [
|
|
8
|
+
"@backstage/plugin-catalog-import"
|
|
9
|
+
]
|
|
10
|
+
};
|
|
11
|
+
var publishConfig = {
|
|
12
|
+
access: "public"
|
|
13
|
+
};
|
|
14
|
+
var keywords = [
|
|
15
|
+
"backstage"
|
|
16
|
+
];
|
|
17
|
+
var homepage = "https://backstage.io";
|
|
18
|
+
var repository = {
|
|
19
|
+
type: "git",
|
|
20
|
+
url: "https://github.com/backstage/backstage",
|
|
21
|
+
directory: "plugins/catalog-import"
|
|
22
|
+
};
|
|
23
|
+
var license = "Apache-2.0";
|
|
24
|
+
var sideEffects = false;
|
|
25
|
+
var exports = {
|
|
26
|
+
".": "./src/index.ts",
|
|
27
|
+
"./alpha": "./src/alpha.tsx",
|
|
28
|
+
"./package.json": "./package.json"
|
|
29
|
+
};
|
|
30
|
+
var main = "src/index.ts";
|
|
31
|
+
var types = "src/index.ts";
|
|
32
|
+
var typesVersions = {
|
|
33
|
+
"*": {
|
|
34
|
+
alpha: [
|
|
35
|
+
"src/alpha.tsx"
|
|
36
|
+
],
|
|
37
|
+
"package.json": [
|
|
38
|
+
"package.json"
|
|
39
|
+
]
|
|
40
|
+
}
|
|
41
|
+
};
|
|
42
|
+
var files = [
|
|
43
|
+
"dist",
|
|
44
|
+
"config.d.ts"
|
|
45
|
+
];
|
|
46
|
+
var scripts = {
|
|
47
|
+
build: "backstage-cli package build",
|
|
48
|
+
clean: "backstage-cli package clean",
|
|
49
|
+
lint: "backstage-cli package lint",
|
|
50
|
+
prepack: "backstage-cli package prepack",
|
|
51
|
+
postpack: "backstage-cli package postpack",
|
|
52
|
+
start: "backstage-cli package start",
|
|
53
|
+
test: "backstage-cli package test"
|
|
54
|
+
};
|
|
55
|
+
var dependencies = {
|
|
56
|
+
"@backstage/catalog-client": "workspace:^",
|
|
57
|
+
"@backstage/catalog-model": "workspace:^",
|
|
58
|
+
"@backstage/config": "workspace:^",
|
|
59
|
+
"@backstage/core-compat-api": "workspace:^",
|
|
60
|
+
"@backstage/core-components": "workspace:^",
|
|
61
|
+
"@backstage/core-plugin-api": "workspace:^",
|
|
62
|
+
"@backstage/errors": "workspace:^",
|
|
63
|
+
"@backstage/frontend-plugin-api": "workspace:^",
|
|
64
|
+
"@backstage/integration": "workspace:^",
|
|
65
|
+
"@backstage/integration-react": "workspace:^",
|
|
66
|
+
"@backstage/plugin-catalog-common": "workspace:^",
|
|
67
|
+
"@backstage/plugin-catalog-react": "workspace:^",
|
|
68
|
+
"@material-ui/core": "^4.12.2",
|
|
69
|
+
"@material-ui/icons": "^4.9.1",
|
|
70
|
+
"@material-ui/lab": "4.0.0-alpha.61",
|
|
71
|
+
"@octokit/rest": "^19.0.3",
|
|
72
|
+
"git-url-parse": "^15.0.0",
|
|
73
|
+
"js-base64": "^3.6.0",
|
|
74
|
+
lodash: "^4.17.21",
|
|
75
|
+
"react-hook-form": "^7.12.2",
|
|
76
|
+
"react-use": "^17.2.4",
|
|
77
|
+
yaml: "^2.0.0"
|
|
78
|
+
};
|
|
79
|
+
var devDependencies = {
|
|
80
|
+
"@backstage/cli": "workspace:^",
|
|
81
|
+
"@backstage/core-app-api": "workspace:^",
|
|
82
|
+
"@backstage/dev-utils": "workspace:^",
|
|
83
|
+
"@backstage/plugin-catalog": "workspace:^",
|
|
84
|
+
"@backstage/test-utils": "workspace:^",
|
|
85
|
+
"@testing-library/dom": "^10.0.0",
|
|
86
|
+
"@testing-library/jest-dom": "^6.0.0",
|
|
87
|
+
"@testing-library/react": "^16.0.0",
|
|
88
|
+
"@testing-library/user-event": "^14.0.0",
|
|
89
|
+
"@types/react": "^18.0.0",
|
|
90
|
+
msw: "^1.0.0",
|
|
91
|
+
react: "^18.0.2",
|
|
92
|
+
"react-dom": "^18.0.2",
|
|
93
|
+
"react-router-dom": "^6.3.0"
|
|
94
|
+
};
|
|
95
|
+
var peerDependencies = {
|
|
96
|
+
"@types/react": "^17.0.0 || ^18.0.0",
|
|
97
|
+
react: "^17.0.0 || ^18.0.0",
|
|
98
|
+
"react-dom": "^17.0.0 || ^18.0.0",
|
|
99
|
+
"react-router-dom": "^6.3.0"
|
|
100
|
+
};
|
|
101
|
+
var peerDependenciesMeta = {
|
|
102
|
+
"@types/react": {
|
|
103
|
+
optional: true
|
|
104
|
+
}
|
|
105
|
+
};
|
|
106
|
+
var configSchema = "config.d.ts";
|
|
107
|
+
var _package = {
|
|
108
|
+
name: name,
|
|
109
|
+
version: version,
|
|
110
|
+
description: description,
|
|
111
|
+
backstage: backstage,
|
|
112
|
+
publishConfig: publishConfig,
|
|
113
|
+
keywords: keywords,
|
|
114
|
+
homepage: homepage,
|
|
115
|
+
repository: repository,
|
|
116
|
+
license: license,
|
|
117
|
+
sideEffects: sideEffects,
|
|
118
|
+
exports: exports,
|
|
119
|
+
main: main,
|
|
120
|
+
types: types,
|
|
121
|
+
typesVersions: typesVersions,
|
|
122
|
+
files: files,
|
|
123
|
+
scripts: scripts,
|
|
124
|
+
dependencies: dependencies,
|
|
125
|
+
devDependencies: devDependencies,
|
|
126
|
+
peerDependencies: peerDependencies,
|
|
127
|
+
peerDependenciesMeta: peerDependenciesMeta,
|
|
128
|
+
configSchema: configSchema
|
|
129
|
+
};
|
|
130
|
+
|
|
131
|
+
export { backstage, configSchema, _package as default, dependencies, description, devDependencies, exports, files, homepage, keywords, license, main, name, peerDependencies, peerDependenciesMeta, publishConfig, repository, scripts, sideEffects, types, typesVersions, version };
|
|
132
|
+
//# sourceMappingURL=package.json.esm.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"package.json.esm.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-catalog-import",
|
|
3
|
-
"version": "0.13.
|
|
3
|
+
"version": "0.13.1-next.0",
|
|
4
4
|
"description": "A Backstage plugin the helps you import entities into your catalog",
|
|
5
5
|
"backstage": {
|
|
6
6
|
"role": "frontend-plugin",
|
|
@@ -66,18 +66,18 @@
|
|
|
66
66
|
"test": "backstage-cli package test"
|
|
67
67
|
},
|
|
68
68
|
"dependencies": {
|
|
69
|
-
"@backstage/catalog-client": "1.10.0
|
|
70
|
-
"@backstage/catalog-model": "1.7.
|
|
69
|
+
"@backstage/catalog-client": "1.10.0",
|
|
70
|
+
"@backstage/catalog-model": "1.7.4",
|
|
71
71
|
"@backstage/config": "1.3.2",
|
|
72
|
-
"@backstage/core-compat-api": "0.4.
|
|
73
|
-
"@backstage/core-components": "0.17.2
|
|
74
|
-
"@backstage/core-plugin-api": "1.10.7
|
|
72
|
+
"@backstage/core-compat-api": "0.4.3-next.0",
|
|
73
|
+
"@backstage/core-components": "0.17.2",
|
|
74
|
+
"@backstage/core-plugin-api": "1.10.7",
|
|
75
75
|
"@backstage/errors": "1.2.7",
|
|
76
|
-
"@backstage/frontend-plugin-api": "0.10.
|
|
77
|
-
"@backstage/integration": "1.17.0
|
|
78
|
-
"@backstage/integration-react": "1.2.7
|
|
79
|
-
"@backstage/plugin-catalog-common": "1.1.4
|
|
80
|
-
"@backstage/plugin-catalog-react": "1.18.
|
|
76
|
+
"@backstage/frontend-plugin-api": "0.10.3-next.0",
|
|
77
|
+
"@backstage/integration": "1.17.0",
|
|
78
|
+
"@backstage/integration-react": "1.2.7",
|
|
79
|
+
"@backstage/plugin-catalog-common": "1.1.4",
|
|
80
|
+
"@backstage/plugin-catalog-react": "1.18.1-next.0",
|
|
81
81
|
"@material-ui/core": "^4.12.2",
|
|
82
82
|
"@material-ui/icons": "^4.9.1",
|
|
83
83
|
"@material-ui/lab": "4.0.0-alpha.61",
|
|
@@ -90,11 +90,11 @@
|
|
|
90
90
|
"yaml": "^2.0.0"
|
|
91
91
|
},
|
|
92
92
|
"devDependencies": {
|
|
93
|
-
"@backstage/cli": "0.32.1
|
|
94
|
-
"@backstage/core-app-api": "1.17.0
|
|
95
|
-
"@backstage/dev-utils": "1.1.
|
|
96
|
-
"@backstage/plugin-catalog": "1.
|
|
97
|
-
"@backstage/test-utils": "1.7.8
|
|
93
|
+
"@backstage/cli": "0.32.1",
|
|
94
|
+
"@backstage/core-app-api": "1.17.0",
|
|
95
|
+
"@backstage/dev-utils": "1.1.11-next.0",
|
|
96
|
+
"@backstage/plugin-catalog": "1.31.0-next.0",
|
|
97
|
+
"@backstage/test-utils": "1.7.8",
|
|
98
98
|
"@testing-library/dom": "^10.0.0",
|
|
99
99
|
"@testing-library/jest-dom": "^6.0.0",
|
|
100
100
|
"@testing-library/react": "^16.0.0",
|