@backstage/repo-tools 0.14.0-next.0 → 0.14.0-next.2

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,30 @@
1
1
  # @backstage/repo-tools
2
2
 
3
+ ## 0.14.0-next.2
4
+
5
+ ### Patch Changes
6
+
7
+ - 4bff5d0: Fixed a bug where linting would fail with the generated clients when defining top-level `enum` schema values.
8
+ - Updated dependencies
9
+ - @backstage/backend-plugin-api@1.4.0-next.1
10
+ - @backstage/catalog-model@1.7.4
11
+ - @backstage/cli-common@0.1.15
12
+ - @backstage/cli-node@0.2.13
13
+ - @backstage/config-loader@1.10.1
14
+ - @backstage/errors@1.2.7
15
+
16
+ ## 0.14.0-next.1
17
+
18
+ ### Patch Changes
19
+
20
+ - Updated dependencies
21
+ - @backstage/backend-plugin-api@1.4.0-next.1
22
+ - @backstage/catalog-model@1.7.4
23
+ - @backstage/cli-common@0.1.15
24
+ - @backstage/cli-node@0.2.13
25
+ - @backstage/config-loader@1.10.1
26
+ - @backstage/errors@1.2.7
27
+
3
28
  ## 0.14.0-next.0
4
29
 
5
30
  ### Minor Changes
@@ -1,6 +1,6 @@
1
1
  'use strict';
2
2
 
3
- var version = "0.14.0-next.0";
3
+ var version = "0.14.0-next.2";
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/repo-tools",
3
- "version": "0.14.0-next.0",
3
+ "version": "0.14.0-next.2",
4
4
  "description": "CLI for Backstage repo tooling ",
5
5
  "backstage": {
6
6
  "role": "cli"
@@ -43,7 +43,7 @@
43
43
  "dependencies": {
44
44
  "@apidevtools/swagger-parser": "^10.1.0",
45
45
  "@apisyouwonthate/style-guide": "^1.4.0",
46
- "@backstage/backend-plugin-api": "1.4.0-next.0",
46
+ "@backstage/backend-plugin-api": "1.4.0-next.1",
47
47
  "@backstage/catalog-model": "1.7.4",
48
48
  "@backstage/cli-common": "0.1.15",
49
49
  "@backstage/cli-node": "0.2.13",
@@ -86,8 +86,8 @@
86
86
  "zod": "^3.22.4"
87
87
  },
88
88
  "devDependencies": {
89
- "@backstage/backend-test-utils": "1.6.0-next.0",
90
- "@backstage/cli": "0.32.1",
89
+ "@backstage/backend-test-utils": "1.6.0-next.2",
90
+ "@backstage/cli": "0.33.0-next.1",
91
91
  "@backstage/types": "1.2.1",
92
92
  "@types/is-glob": "^4.0.2",
93
93
  "@types/node": "^20.16.0",
@@ -18,14 +18,3 @@ export enum {{classname}} {
18
18
  */
19
19
  export type {{classname}} = {{#allowableValues}}{{#enumVars}}{{{value}}}{{^-last}} | {{/-last}}{{/enumVars}}{{/allowableValues}};
20
20
 
21
- /**
22
- * @public
23
- */
24
- export const {{classname}} = {
25
- {{#allowableValues}}
26
- {{#enumVars}}
27
- {{name}}: {{{value}}} as {{classname}}{{^-last}},{{/-last}}
28
- {{/enumVars}}
29
- {{/allowableValues}}
30
- };
31
- {{/stringEnums}}
@@ -18,14 +18,3 @@ export enum {{classname}} {
18
18
  */
19
19
  export type {{classname}} = {{#allowableValues}}{{#enumVars}}{{{value}}}{{^-last}} | {{/-last}}{{/enumVars}}{{/allowableValues}};
20
20
 
21
- /**
22
- * @public
23
- */
24
- export const {{classname}} = {
25
- {{#allowableValues}}
26
- {{#enumVars}}
27
- {{name}}: {{{value}}} as {{classname}}{{^-last}},{{/-last}}
28
- {{/enumVars}}
29
- {{/allowableValues}}
30
- };
31
- {{/stringEnums}}