@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 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
- // TODO(Rugvip): Afaik this should never happen and we can remove this check, but want it here for a little while to verify.
131
- if (ext === '.js') {
132
- throw new Error('Unexpected .js file without explicit format');
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));
@@ -1,6 +1,6 @@
1
1
  'use strict';
2
2
 
3
- var version = "0.11.1-next.1";
3
+ var version = "0.11.2-next.0";
4
4
 
5
5
  exports.version = version;
6
6
  //# sourceMappingURL=package.json.cjs.js.map
@@ -1,6 +1,6 @@
1
1
  'use strict';
2
2
 
3
- var version = "1.4.1-next.0";
3
+ var version = "1.4.2-next.0";
4
4
 
5
5
  exports.version = version;
6
6
  //# sourceMappingURL=package.json.cjs.js.map
@@ -1,6 +1,6 @@
1
1
  'use strict';
2
2
 
3
- var version = "1.7.0-next.1";
3
+ var version = "1.7.1-next.0";
4
4
 
5
5
  exports.version = version;
6
6
  //# sourceMappingURL=package.json.cjs.js.map
@@ -1,6 +1,6 @@
1
1
  'use strict';
2
2
 
3
- var version = "1.10.2-next.0";
3
+ var version = "1.11.0-next.0";
4
4
 
5
5
  exports.version = version;
6
6
  //# sourceMappingURL=package.json.cjs.js.map
@@ -1,6 +1,6 @@
1
1
  'use strict';
2
2
 
3
- var version = "0.33.1-next.2";
3
+ var version = "0.33.2-next.0";
4
4
  var dependencies = {
5
5
  "@backstage/catalog-model": "workspace:^",
6
6
  "@backstage/cli-common": "workspace:^",
@@ -1,6 +1,6 @@
1
1
  'use strict';
2
2
 
3
- var version = "1.3.3-next.0";
3
+ var version = "1.3.3";
4
4
 
5
5
  exports.version = version;
6
6
  //# sourceMappingURL=package.json.cjs.js.map
@@ -1,6 +1,6 @@
1
1
  'use strict';
2
2
 
3
- var version = "1.18.0-next.1";
3
+ var version = "1.18.0";
4
4
 
5
5
  exports.version = version;
6
6
  //# sourceMappingURL=package.json.cjs.js.map
@@ -1,6 +1,6 @@
1
1
  'use strict';
2
2
 
3
- var version = "0.17.4-next.2";
3
+ var version = "0.17.5-next.0";
4
4
 
5
5
  exports.version = version;
6
6
  //# sourceMappingURL=package.json.cjs.js.map
@@ -1,6 +1,6 @@
1
1
  'use strict';
2
2
 
3
- var version = "1.10.9-next.0";
3
+ var version = "1.10.9";
4
4
 
5
5
  exports.version = version;
6
6
  //# sourceMappingURL=package.json.cjs.js.map
@@ -1,6 +1,6 @@
1
1
  'use strict';
2
2
 
3
- var version = "1.1.12-next.2";
3
+ var version = "1.1.13-next.1";
4
4
 
5
5
  exports.version = version;
6
6
  //# sourceMappingURL=package.json.cjs.js.map
@@ -1,6 +1,6 @@
1
1
  'use strict';
2
2
 
3
- var version = "1.7.10-next.2";
3
+ var version = "1.7.11-next.0";
4
4
 
5
5
  exports.version = version;
6
6
  //# sourceMappingURL=package.json.cjs.js.map
@@ -1,6 +1,6 @@
1
1
  'use strict';
2
2
 
3
- var version = "0.6.7-next.1";
3
+ var version = "0.6.8-next.0";
4
4
 
5
5
  exports.version = version;
6
6
  //# sourceMappingURL=package.json.cjs.js.map
@@ -1,6 +1,6 @@
1
1
  'use strict';
2
2
 
3
- var version = "0.25.2-next.1";
3
+ var version = "0.25.3-next.0";
4
4
 
5
5
  exports.version = version;
6
6
  //# sourceMappingURL=package.json.cjs.js.map
@@ -1,6 +1,6 @@
1
1
  'use strict';
2
2
 
3
- var version = "0.2.10-next.0";
3
+ var version = "0.2.11-next.0";
4
4
 
5
5
  exports.version = version;
6
6
  //# sourceMappingURL=package.json.cjs.js.map
@@ -1,6 +1,6 @@
1
1
  'use strict';
2
2
 
3
- var version = "1.17.2-next.0";
3
+ var version = "1.18.0-next.0";
4
4
 
5
5
  exports.version = version;
6
6
  //# sourceMappingURL=package.json.cjs.js.map
@@ -1,6 +1,6 @@
1
1
  'use strict';
2
2
 
3
- var version = "0.10.0-next.2";
3
+ var version = "0.11.0-next.0";
4
4
 
5
5
  exports.version = version;
6
6
  //# sourceMappingURL=package.json.cjs.js.map
@@ -1,6 +1,6 @@
1
1
  'use strict';
2
2
 
3
- var version = "0.3.1-next.2";
3
+ var version = "0.3.2-next.0";
4
4
 
5
5
  exports.version = version;
6
6
  //# sourceMappingURL=package.json.cjs.js.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@backstage/cli",
3
- "version": "0.33.1-next.2",
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-next.0",
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-next.0",
54
- "@backstage/config-loader": "1.10.2-next.0",
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-next.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.1-next.0",
167
- "@backstage/backend-test-utils": "1.7.0-next.1",
168
- "@backstage/catalog-client": "1.10.2-next.0",
169
- "@backstage/config": "1.3.3-next.0",
170
- "@backstage/core-app-api": "1.18.0-next.1",
171
- "@backstage/core-components": "0.17.4-next.2",
172
- "@backstage/core-plugin-api": "1.10.9-next.0",
173
- "@backstage/dev-utils": "1.1.12-next.2",
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.2-next.1",
176
- "@backstage/plugin-auth-backend-module-guest-provider": "0.2.10-next.0",
177
- "@backstage/plugin-catalog-node": "1.17.2-next.0",
178
- "@backstage/plugin-scaffolder-node": "0.10.0-next.2",
179
- "@backstage/plugin-scaffolder-node-test-utils": "0.3.1-next.2",
180
- "@backstage/test-utils": "1.7.10-next.2",
181
- "@backstage/theme": "0.6.7-next.1",
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",