@backstage/repo-tools 0.6.0-next.0 → 0.6.0-next.1

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,17 @@
1
1
  # @backstage/repo-tools
2
2
 
3
+ ## 0.6.0-next.1
4
+
5
+ ### Patch Changes
6
+
7
+ - c04c42b: Fixes an issue where comments would be duplicated in the template. Also, removes a header with the title and version of the OpenAPI spec from generated code.
8
+ - Updated dependencies
9
+ - @backstage/catalog-model@1.4.4-next.0
10
+ - @backstage/backend-common@0.21.0-next.1
11
+ - @backstage/cli-common@0.1.13
12
+ - @backstage/cli-node@0.2.2
13
+ - @backstage/errors@1.2.3
14
+
3
15
  ## 0.6.0-next.0
4
16
 
5
17
  ### Minor Changes
package/dist/index.cjs.js CHANGED
@@ -125,7 +125,7 @@ function lazy(getActionFunc) {
125
125
  };
126
126
  }
127
127
 
128
- var version = "0.6.0-next.0";
128
+ var version = "0.6.0-next.1";
129
129
 
130
130
  const main = (argv) => {
131
131
  commander.program.name("backstage-repo-tools").version(version);
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@backstage/repo-tools",
3
3
  "description": "CLI for Backstage repo tooling ",
4
- "version": "0.6.0-next.0",
4
+ "version": "0.6.0-next.1",
5
5
  "publishConfig": {
6
6
  "access": "public"
7
7
  },
@@ -32,8 +32,8 @@
32
32
  "dependencies": {
33
33
  "@apidevtools/swagger-parser": "^10.1.0",
34
34
  "@apisyouwonthate/style-guide": "^1.4.0",
35
- "@backstage/backend-common": "^0.21.0-next.0",
36
- "@backstage/catalog-model": "^1.4.3",
35
+ "@backstage/backend-common": "^0.21.0-next.1",
36
+ "@backstage/catalog-model": "^1.4.4-next.0",
37
37
  "@backstage/cli-common": "^0.1.13",
38
38
  "@backstage/cli-node": "^0.2.2",
39
39
  "@backstage/errors": "^1.2.3",
@@ -63,8 +63,8 @@
63
63
  "yaml-diff-patch": "^2.0.0"
64
64
  },
65
65
  "devDependencies": {
66
- "@backstage/backend-test-utils": "^0.3.0-next.0",
67
- "@backstage/cli": "^0.25.2-next.0",
66
+ "@backstage/backend-test-utils": "^0.3.0-next.1",
67
+ "@backstage/cli": "^0.25.2-next.1",
68
68
  "@backstage/types": "^1.1.1",
69
69
  "@types/is-glob": "^4.0.2",
70
70
  "@types/node": "^18.17.8",
@@ -1,7 +1,5 @@
1
1
  //
2
2
 
3
- /**
4
- * {{{appName}}}{{#version}}@{{{.}}}{{/version}}
5
- *
6
- * NOTE: This class is auto generated, do not edit the class manually.
7
- */
3
+ // ******************************************************************
4
+ // * THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. *
5
+ // ******************************************************************
@@ -6,12 +6,6 @@
6
6
  import { {{classname}} } from '{{filename}}.model';
7
7
  {{/tsImports}}
8
8
 
9
-
10
- {{#description}}
11
- /**
12
- * {{{.}}}
13
- */
14
- {{/description}}
15
9
  {{#isEnum}}{{>modelEnum}}{{/isEnum}}{{^isEnum}}{{#isAlias}}{{>modelAlias}}{{/isAlias}}{{^isAlias}}{{#taggedUnions}}{{>modelTaggedUnion}}{{/taggedUnions}}{{^taggedUnions}}{{#oneOf}}{{#-first}}{{>modelOneOf}}{{/-first}}{{/oneOf}}{{^oneOf}}{{>modelGeneric}}{{/oneOf}}{{/taggedUnions}}{{/isAlias}}{{/isEnum}}
16
10
  {{/model}}
17
11
  {{/models}}
@@ -1,7 +1,5 @@
1
1
  {{! Sourced from https://github.com/OpenAPITools/openapi-generator/blob/7347daec61b2cb8d3d28e1ed06fe8b5e682090f8/modules/openapi-generator/src/main/resources/typescript-angular/modelGenericAdditionalProperties.mustache }}
2
2
 
3
3
  {{#additionalPropertiesType}}
4
-
5
- [key: string]: {{{additionalPropertiesType}}}{{#hasVars}} | any{{/hasVars}};
6
-
4
+ [key: string]: {{{additionalPropertiesType}}};
7
5
  {{/additionalPropertiesType}}