@backstage/cli 0.33.1-next.2 → 0.33.2-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 +28 -0
- package/config/nodeTransformHooks.mjs +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 +1 -1
- 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/test-utils/package.json.cjs.js +1 -1
- package/dist/packages/theme/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 +20 -20
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,33 @@
|
|
|
1
1
|
# @backstage/cli
|
|
2
2
|
|
|
3
|
+
## 0.33.2-next.0
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- a6af768: Allow js files to be processed by the nodeTransform loader
|
|
8
|
+
- Updated dependencies
|
|
9
|
+
- @backstage/cli-node@0.2.13
|
|
10
|
+
- @backstage/config-loader@1.10.2
|
|
11
|
+
- @backstage/catalog-model@1.7.5
|
|
12
|
+
- @backstage/cli-common@0.1.15
|
|
13
|
+
- @backstage/config@1.3.3
|
|
14
|
+
- @backstage/errors@1.2.7
|
|
15
|
+
- @backstage/eslint-plugin@0.1.11
|
|
16
|
+
- @backstage/integration@1.17.1
|
|
17
|
+
- @backstage/release-manifests@0.0.13
|
|
18
|
+
- @backstage/types@1.2.1
|
|
19
|
+
|
|
20
|
+
## 0.33.1
|
|
21
|
+
|
|
22
|
+
### Patch Changes
|
|
23
|
+
|
|
24
|
+
- 50f0ce6: Fixes a module not found error when running `backstage-cli info`.
|
|
25
|
+
- Updated dependencies
|
|
26
|
+
- @backstage/config-loader@1.10.2
|
|
27
|
+
- @backstage/config@1.3.3
|
|
28
|
+
- @backstage/catalog-model@1.7.5
|
|
29
|
+
- @backstage/integration@1.17.1
|
|
30
|
+
|
|
3
31
|
## 0.33.1-next.2
|
|
4
32
|
|
|
5
33
|
### Patch Changes
|
|
@@ -127,10 +127,10 @@ async function withDetectedModuleType(resolved) {
|
|
|
127
127
|
};
|
|
128
128
|
}
|
|
129
129
|
|
|
130
|
-
//
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
130
|
+
// Under normal circumstances .js files should reliably have a format and so
|
|
131
|
+
// we should only reach this point for .ts files. However, if additional
|
|
132
|
+
// custom loaders are being used the format may not be detected for .js files
|
|
133
|
+
// either. As such we don't restrict the file format at this point.
|
|
134
134
|
|
|
135
135
|
// TODO(Rugvip): Does this need caching? kept it simple for now but worth exploring
|
|
136
136
|
const packageJsonPath = await findPackageJSON(fileURLToPath(resolved.url));
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/cli",
|
|
3
|
-
"version": "0.33.
|
|
3
|
+
"version": "0.33.2-next.0",
|
|
4
4
|
"description": "CLI for developing Backstage plugins and apps",
|
|
5
5
|
"backstage": {
|
|
6
6
|
"role": "cli"
|
|
@@ -47,14 +47,14 @@
|
|
|
47
47
|
]
|
|
48
48
|
},
|
|
49
49
|
"dependencies": {
|
|
50
|
-
"@backstage/catalog-model": "1.7.5
|
|
50
|
+
"@backstage/catalog-model": "1.7.5",
|
|
51
51
|
"@backstage/cli-common": "0.1.15",
|
|
52
52
|
"@backstage/cli-node": "0.2.13",
|
|
53
|
-
"@backstage/config": "1.3.3
|
|
54
|
-
"@backstage/config-loader": "1.10.2
|
|
53
|
+
"@backstage/config": "1.3.3",
|
|
54
|
+
"@backstage/config-loader": "1.10.2",
|
|
55
55
|
"@backstage/errors": "1.2.7",
|
|
56
56
|
"@backstage/eslint-plugin": "0.1.11",
|
|
57
|
-
"@backstage/integration": "1.17.1
|
|
57
|
+
"@backstage/integration": "1.17.1",
|
|
58
58
|
"@backstage/release-manifests": "0.0.13",
|
|
59
59
|
"@backstage/types": "1.2.1",
|
|
60
60
|
"@manypkg/get-packages": "^1.1.3",
|
|
@@ -163,22 +163,22 @@
|
|
|
163
163
|
"zod-validation-error": "^3.4.0"
|
|
164
164
|
},
|
|
165
165
|
"devDependencies": {
|
|
166
|
-
"@backstage/backend-plugin-api": "1.4.
|
|
167
|
-
"@backstage/backend-test-utils": "1.7.
|
|
168
|
-
"@backstage/catalog-client": "1.
|
|
169
|
-
"@backstage/config": "1.3.3
|
|
170
|
-
"@backstage/core-app-api": "1.18.0
|
|
171
|
-
"@backstage/core-components": "0.17.
|
|
172
|
-
"@backstage/core-plugin-api": "1.10.9
|
|
173
|
-
"@backstage/dev-utils": "1.1.
|
|
166
|
+
"@backstage/backend-plugin-api": "1.4.2-next.0",
|
|
167
|
+
"@backstage/backend-test-utils": "1.7.1-next.0",
|
|
168
|
+
"@backstage/catalog-client": "1.11.0-next.0",
|
|
169
|
+
"@backstage/config": "1.3.3",
|
|
170
|
+
"@backstage/core-app-api": "1.18.0",
|
|
171
|
+
"@backstage/core-components": "0.17.5-next.0",
|
|
172
|
+
"@backstage/core-plugin-api": "1.10.9",
|
|
173
|
+
"@backstage/dev-utils": "1.1.13-next.1",
|
|
174
174
|
"@backstage/errors": "1.2.7",
|
|
175
|
-
"@backstage/plugin-auth-backend": "0.25.
|
|
176
|
-
"@backstage/plugin-auth-backend-module-guest-provider": "0.2.
|
|
177
|
-
"@backstage/plugin-catalog-node": "1.
|
|
178
|
-
"@backstage/plugin-scaffolder-node": "0.
|
|
179
|
-
"@backstage/plugin-scaffolder-node-test-utils": "0.3.
|
|
180
|
-
"@backstage/test-utils": "1.7.
|
|
181
|
-
"@backstage/theme": "0.6.
|
|
175
|
+
"@backstage/plugin-auth-backend": "0.25.3-next.0",
|
|
176
|
+
"@backstage/plugin-auth-backend-module-guest-provider": "0.2.11-next.0",
|
|
177
|
+
"@backstage/plugin-catalog-node": "1.18.0-next.0",
|
|
178
|
+
"@backstage/plugin-scaffolder-node": "0.11.0-next.0",
|
|
179
|
+
"@backstage/plugin-scaffolder-node-test-utils": "0.3.2-next.0",
|
|
180
|
+
"@backstage/test-utils": "1.7.11-next.0",
|
|
181
|
+
"@backstage/theme": "0.6.8-next.0",
|
|
182
182
|
"@rspack/core": "^1.3.9",
|
|
183
183
|
"@rspack/dev-server": "^1.1.1",
|
|
184
184
|
"@rspack/plugin-react-refresh": "^1.4.2",
|