@backstage/repo-tools 0.15.0 → 0.15.1-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,24 @@
1
1
  # @backstage/repo-tools
2
2
 
3
+ ## 0.15.1-next.1
4
+
5
+ ### Patch Changes
6
+
7
+ - 33060b5: Removed build-in ignore of the `packages/canon` package for knip reports.
8
+
9
+ ## 0.15.1-next.0
10
+
11
+ ### Patch Changes
12
+
13
+ - 225d7c2: Added `stringEnums` to `mustache` templates
14
+ - Updated dependencies
15
+ - @backstage/backend-plugin-api@1.4.2-next.0
16
+ - @backstage/cli-node@0.2.13
17
+ - @backstage/config-loader@1.10.2
18
+ - @backstage/catalog-model@1.7.5
19
+ - @backstage/cli-common@0.1.15
20
+ - @backstage/errors@1.2.7
21
+
3
22
  ## 0.15.0
4
23
 
5
24
  ### Minor Changes
@@ -13,10 +13,6 @@ var pLimit__default = /*#__PURE__*/_interopDefaultCompat(pLimit);
13
13
  var os__default = /*#__PURE__*/_interopDefaultCompat(os);
14
14
  var fs__default = /*#__PURE__*/_interopDefaultCompat(fs);
15
15
 
16
- const ignoredPackages = [
17
- "packages/canon"
18
- // storybook config is different from the rest
19
- ];
20
16
  function logKnipReportInstructions() {
21
17
  console.log("");
22
18
  console.log(
@@ -81,10 +77,6 @@ async function handlePackage({
81
77
  isLocalBuild
82
78
  }) {
83
79
  console.log(`## Processing ${packageDir}`);
84
- if (ignoredPackages.includes(packageDir)) {
85
- console.log(`Skipping ${packageDir}`);
86
- return;
87
- }
88
80
  const fullDir = paths.paths.resolveTargetRoot(packageDir);
89
81
  const reportPath = path.resolve(fullDir, "knip-report.md");
90
82
  const run = util.createBinRunner(paths.paths.targetRoot, "");
@@ -1,6 +1,6 @@
1
1
  'use strict';
2
2
 
3
- var version = "0.15.0";
3
+ var version = "0.15.1-next.1";
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.15.0",
3
+ "version": "0.15.1-next.1",
4
4
  "description": "CLI for Backstage repo tooling ",
5
5
  "backstage": {
6
6
  "role": "cli"
@@ -43,12 +43,12 @@
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.1",
47
- "@backstage/catalog-model": "^1.7.5",
48
- "@backstage/cli-common": "^0.1.15",
49
- "@backstage/cli-node": "^0.2.13",
50
- "@backstage/config-loader": "^1.10.2",
51
- "@backstage/errors": "^1.2.7",
46
+ "@backstage/backend-plugin-api": "1.4.2-next.0",
47
+ "@backstage/catalog-model": "1.7.5",
48
+ "@backstage/cli-common": "0.1.15",
49
+ "@backstage/cli-node": "0.2.13",
50
+ "@backstage/config-loader": "1.10.2",
51
+ "@backstage/errors": "1.2.7",
52
52
  "@electric-sql/pglite": "^0.3.0",
53
53
  "@manypkg/get-packages": "^1.1.3",
54
54
  "@microsoft/api-documenter": "^7.25.7",
@@ -86,9 +86,9 @@
86
86
  "zod": "^3.22.4"
87
87
  },
88
88
  "devDependencies": {
89
- "@backstage/backend-test-utils": "^1.7.0",
90
- "@backstage/cli": "^0.33.1",
91
- "@backstage/types": "^1.2.1",
89
+ "@backstage/backend-test-utils": "1.7.1-next.0",
90
+ "@backstage/cli": "0.34.0-next.2",
91
+ "@backstage/types": "1.2.1",
92
92
  "@types/is-glob": "^4.0.2",
93
93
  "@types/node": "^20.16.0",
94
94
  "@types/prettier": "^2.0.0",
@@ -17,4 +17,4 @@ export enum {{classname}} {
17
17
  * @public
18
18
  */
19
19
  export type {{classname}} = {{#allowableValues}}{{#enumVars}}{{{value}}}{{^-last}} | {{/-last}}{{/enumVars}}{{/allowableValues}};
20
-
20
+ {{/stringEnums}}
@@ -17,4 +17,4 @@ export enum {{classname}} {
17
17
  * @public
18
18
  */
19
19
  export type {{classname}} = {{#allowableValues}}{{#enumVars}}{{{value}}}{{^-last}} | {{/-last}}{{/enumVars}}{{/allowableValues}};
20
-
20
+ {{/stringEnums}}