@backstage/repo-tools 0.7.0-next.2 → 0.7.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,22 @@
1
1
  # @backstage/repo-tools
2
2
 
3
+ ## 0.7.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 8bfcc50: Fix knip-report command to send 1 exit status in case of fail
8
+
9
+ ### Patch Changes
10
+
11
+ - 999224f: Bump dependency `minimatch` to v9
12
+ - 1bd4596: Removed the `ts-node` dev dependency.
13
+ - Updated dependencies
14
+ - @backstage/backend-common@0.21.4
15
+ - @backstage/errors@1.2.4
16
+ - @backstage/cli-node@0.2.4
17
+ - @backstage/catalog-model@1.4.5
18
+ - @backstage/cli-common@0.1.13
19
+
3
20
  ## 0.7.0-next.2
4
21
 
5
22
  ### Patch Changes
@@ -24,14 +24,6 @@ const isLocal = require('fs').existsSync(path.resolve(__dirname, '../src'));
24
24
  if (!isLocal || process.env.BACKSTAGE_E2E_CLI_TEST) {
25
25
  require('..');
26
26
  } else {
27
- require('ts-node').register({
28
- transpileOnly: true,
29
- /* eslint-disable-next-line no-restricted-syntax */
30
- project: path.resolve(__dirname, '../../../tsconfig.json'),
31
- compilerOptions: {
32
- module: 'CommonJS',
33
- },
34
- });
35
-
27
+ require('@backstage/cli/config/nodeTransform.cjs');
36
28
  require('../src');
37
29
  }
package/dist/index.cjs.js CHANGED
@@ -151,7 +151,7 @@ function lazy(getActionFunc) {
151
151
  };
152
152
  }
153
153
 
154
- var version = "0.7.0-next.2";
154
+ var version = "0.7.0";
155
155
 
156
156
  const main = (argv) => {
157
157
  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.7.0-next.2",
4
+ "version": "0.7.0",
5
5
  "publishConfig": {
6
6
  "access": "public"
7
7
  },
@@ -32,11 +32,11 @@
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.4-next.2",
36
- "@backstage/catalog-model": "^1.4.5-next.0",
35
+ "@backstage/backend-common": "^0.21.4",
36
+ "@backstage/catalog-model": "^1.4.5",
37
37
  "@backstage/cli-common": "^0.1.13",
38
- "@backstage/cli-node": "^0.2.4-next.0",
39
- "@backstage/errors": "^1.2.4-next.0",
38
+ "@backstage/cli-node": "^0.2.4",
39
+ "@backstage/errors": "^1.2.4",
40
40
  "@manypkg/get-packages": "^1.1.3",
41
41
  "@microsoft/api-documenter": "^7.22.33",
42
42
  "@microsoft/api-extractor": "^7.36.4",
@@ -59,12 +59,11 @@
59
59
  "minimatch": "^9.0.0",
60
60
  "p-limit": "^3.0.2",
61
61
  "portfinder": "^1.0.32",
62
- "ts-node": "^10.0.0",
63
62
  "yaml-diff-patch": "^2.0.0"
64
63
  },
65
64
  "devDependencies": {
66
- "@backstage/backend-test-utils": "^0.3.4-next.2",
67
- "@backstage/cli": "^0.25.3-next.2",
65
+ "@backstage/backend-test-utils": "^0.3.4",
66
+ "@backstage/cli": "^0.26.0",
68
67
  "@backstage/types": "^1.1.1",
69
68
  "@types/is-glob": "^4.0.2",
70
69
  "@types/node": "^18.17.8",