@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 +17 -0
- package/bin/backstage-repo-tools +1 -9
- package/dist/index.cjs.js +1 -1
- package/package.json +7 -8
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
|
package/bin/backstage-repo-tools
CHANGED
|
@@ -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('
|
|
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
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
|
|
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
|
|
36
|
-
"@backstage/catalog-model": "^1.4.5
|
|
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
|
|
39
|
-
"@backstage/errors": "^1.2.4
|
|
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
|
|
67
|
-
"@backstage/cli": "^0.
|
|
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",
|