@backstage/cli 0.29.5-next.1 → 0.30.0-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 +52 -0
- package/config/jest.js +98 -62
- package/config/jestCachingModuleLoader.js +14 -0
- package/config/jestSwcTransform.js +6 -0
- package/config/nodeTransform.cjs +10 -1
- package/config/nodeTransformHooks.mjs +282 -0
- package/config/tsconfig.json +1 -0
- package/dist/commands/index.cjs.js +24 -34
- package/dist/commands/versions/bump.cjs.js +10 -9
- package/dist/lib/builder/config.cjs.js +60 -7
- package/dist/lib/builder/packager.cjs.js +1 -1
- package/dist/lib/bundler/server.cjs.js +56 -140
- package/dist/lib/lazy.cjs.js +4 -2
- package/dist/modules/config/index.cjs.js +4 -4
- package/dist/packages/backend-defaults/package.json.cjs.js +1 -1
- package/dist/packages/backend-plugin-api/package.json.cjs.js +1 -1
- package/dist/packages/backend-test-utils/package.json.cjs.js +1 -1
- package/dist/packages/catalog-client/package.json.cjs.js +1 -1
- package/dist/packages/cli/package.json.cjs.js +3 -6
- package/dist/packages/config/package.json.cjs.js +1 -1
- package/dist/packages/core-app-api/package.json.cjs.js +1 -1
- package/dist/packages/core-components/package.json.cjs.js +1 -1
- package/dist/packages/core-plugin-api/package.json.cjs.js +1 -1
- package/dist/packages/dev-utils/package.json.cjs.js +1 -1
- package/dist/packages/errors/package.json.cjs.js +1 -1
- package/dist/packages/test-utils/package.json.cjs.js +1 -1
- package/dist/plugins/auth-backend/package.json.cjs.js +1 -1
- package/dist/plugins/auth-backend-module-guest-provider/package.json.cjs.js +1 -1
- package/dist/plugins/catalog-node/package.json.cjs.js +1 -1
- package/dist/plugins/scaffolder-node/package.json.cjs.js +1 -1
- package/dist/plugins/scaffolder-node-test-utils/package.json.cjs.js +1 -1
- package/package.json +31 -49
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/cli",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.30.0-next.0",
|
|
4
4
|
"description": "CLI for developing Backstage plugins and apps",
|
|
5
5
|
"backstage": {
|
|
6
6
|
"role": "cli"
|
|
@@ -41,17 +41,22 @@
|
|
|
41
41
|
"ext": "ts",
|
|
42
42
|
"watch": "./src"
|
|
43
43
|
},
|
|
44
|
+
"jest": {
|
|
45
|
+
"coveragePathIgnorePatterns": [
|
|
46
|
+
"/__fixtures__/"
|
|
47
|
+
]
|
|
48
|
+
},
|
|
44
49
|
"dependencies": {
|
|
45
|
-
"@backstage/catalog-model": "1.7.3
|
|
50
|
+
"@backstage/catalog-model": "1.7.3",
|
|
46
51
|
"@backstage/cli-common": "0.1.15",
|
|
47
|
-
"@backstage/cli-node": "0.2.
|
|
48
|
-
"@backstage/config": "1.3.2
|
|
49
|
-
"@backstage/config-loader": "1.9.
|
|
50
|
-
"@backstage/errors": "1.2.7
|
|
52
|
+
"@backstage/cli-node": "0.2.13-next.0",
|
|
53
|
+
"@backstage/config": "1.3.2",
|
|
54
|
+
"@backstage/config-loader": "1.9.6-next.0",
|
|
55
|
+
"@backstage/errors": "1.2.7",
|
|
51
56
|
"@backstage/eslint-plugin": "0.1.10",
|
|
52
|
-
"@backstage/integration": "1.16.1
|
|
57
|
+
"@backstage/integration": "1.16.1",
|
|
53
58
|
"@backstage/release-manifests": "0.0.12",
|
|
54
|
-
"@backstage/types": "1.2.1
|
|
59
|
+
"@backstage/types": "1.2.1",
|
|
55
60
|
"@manypkg/get-packages": "^1.1.3",
|
|
56
61
|
"@module-federation/enhanced": "^0.8.0",
|
|
57
62
|
"@octokit/graphql": "^5.0.0",
|
|
@@ -147,6 +152,7 @@
|
|
|
147
152
|
"tar": "^6.1.12",
|
|
148
153
|
"terser-webpack-plugin": "^5.1.3",
|
|
149
154
|
"ts-morph": "^24.0.0",
|
|
155
|
+
"undici": "^7.2.3",
|
|
150
156
|
"util": "^0.12.3",
|
|
151
157
|
"webpack": "^5.94.0",
|
|
152
158
|
"webpack-dev-server": "^5.0.0",
|
|
@@ -157,21 +163,21 @@
|
|
|
157
163
|
"zod": "^3.22.4"
|
|
158
164
|
},
|
|
159
165
|
"devDependencies": {
|
|
160
|
-
"@backstage/backend-plugin-api": "1.
|
|
161
|
-
"@backstage/backend-test-utils": "1.
|
|
162
|
-
"@backstage/catalog-client": "1.9.1
|
|
163
|
-
"@backstage/config": "1.3.2
|
|
164
|
-
"@backstage/core-app-api": "1.15.4
|
|
165
|
-
"@backstage/core-components": "0.16.3
|
|
166
|
-
"@backstage/core-plugin-api": "1.10.3
|
|
167
|
-
"@backstage/dev-utils": "1.1.
|
|
168
|
-
"@backstage/errors": "1.2.7
|
|
169
|
-
"@backstage/plugin-auth-backend": "0.24.
|
|
170
|
-
"@backstage/plugin-auth-backend-module-guest-provider": "0.2.
|
|
171
|
-
"@backstage/plugin-catalog-node": "1.15.
|
|
172
|
-
"@backstage/plugin-scaffolder-node": "0.
|
|
173
|
-
"@backstage/plugin-scaffolder-node-test-utils": "0.1.
|
|
174
|
-
"@backstage/test-utils": "1.7.4
|
|
166
|
+
"@backstage/backend-plugin-api": "1.2.0-next.0",
|
|
167
|
+
"@backstage/backend-test-utils": "1.3.0-next.0",
|
|
168
|
+
"@backstage/catalog-client": "1.9.1",
|
|
169
|
+
"@backstage/config": "1.3.2",
|
|
170
|
+
"@backstage/core-app-api": "1.15.4",
|
|
171
|
+
"@backstage/core-components": "0.16.3",
|
|
172
|
+
"@backstage/core-plugin-api": "1.10.3",
|
|
173
|
+
"@backstage/dev-utils": "1.1.7-next.0",
|
|
174
|
+
"@backstage/errors": "1.2.7",
|
|
175
|
+
"@backstage/plugin-auth-backend": "0.24.3-next.0",
|
|
176
|
+
"@backstage/plugin-auth-backend-module-guest-provider": "0.2.5-next.0",
|
|
177
|
+
"@backstage/plugin-catalog-node": "1.15.2-next.0",
|
|
178
|
+
"@backstage/plugin-scaffolder-node": "0.7.0-next.0",
|
|
179
|
+
"@backstage/plugin-scaffolder-node-test-utils": "0.1.19-next.0",
|
|
180
|
+
"@backstage/test-utils": "1.7.4",
|
|
175
181
|
"@backstage/theme": "0.6.3",
|
|
176
182
|
"@rspack/core": "^1.0.10",
|
|
177
183
|
"@rspack/dev-server": "^1.0.9",
|
|
@@ -192,28 +198,16 @@
|
|
|
192
198
|
"@types/terser-webpack-plugin": "^5.0.4",
|
|
193
199
|
"@types/webpack-sources": "^3.2.3",
|
|
194
200
|
"@types/yarnpkg__lockfile": "^1.1.4",
|
|
195
|
-
"@vitejs/plugin-react": "^4.3.1",
|
|
196
201
|
"del": "^8.0.0",
|
|
197
202
|
"msw": "^1.0.0",
|
|
198
|
-
"nodemon": "^3.0.1"
|
|
199
|
-
"vite": "^5.0.0",
|
|
200
|
-
"vite-plugin-html": "^3.2.2",
|
|
201
|
-
"vite-plugin-node-polyfills": "^0.22.0"
|
|
203
|
+
"nodemon": "^3.0.1"
|
|
202
204
|
},
|
|
203
205
|
"peerDependencies": {
|
|
204
|
-
"@modyfi/vite-plugin-yaml": "^1.1.0",
|
|
205
206
|
"@rspack/core": "^1.0.10",
|
|
206
207
|
"@rspack/dev-server": "^1.0.9",
|
|
207
|
-
"@rspack/plugin-react-refresh": "^1.0.0"
|
|
208
|
-
"@vitejs/plugin-react": "^4.0.4",
|
|
209
|
-
"vite": "^5.0.0",
|
|
210
|
-
"vite-plugin-html": "^3.2.0",
|
|
211
|
-
"vite-plugin-node-polyfills": "^0.22.0"
|
|
208
|
+
"@rspack/plugin-react-refresh": "^1.0.0"
|
|
212
209
|
},
|
|
213
210
|
"peerDependenciesMeta": {
|
|
214
|
-
"@modyfi/vite-plugin-yaml": {
|
|
215
|
-
"optional": true
|
|
216
|
-
},
|
|
217
211
|
"@rspack/core": {
|
|
218
212
|
"optional": true
|
|
219
213
|
},
|
|
@@ -222,18 +216,6 @@
|
|
|
222
216
|
},
|
|
223
217
|
"@rspack/plugin-react-refresh": {
|
|
224
218
|
"optional": true
|
|
225
|
-
},
|
|
226
|
-
"@vitejs/plugin-react": {
|
|
227
|
-
"optional": true
|
|
228
|
-
},
|
|
229
|
-
"vite": {
|
|
230
|
-
"optional": true
|
|
231
|
-
},
|
|
232
|
-
"vite-plugin-html": {
|
|
233
|
-
"optional": true
|
|
234
|
-
},
|
|
235
|
-
"vite-plugin-node-polyfills": {
|
|
236
|
-
"optional": true
|
|
237
219
|
}
|
|
238
220
|
},
|
|
239
221
|
"configSchema": {
|