@backstage/repo-tools 0.15.4-next.1 → 0.16.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,32 @@
|
|
|
1
1
|
# @backstage/repo-tools
|
|
2
2
|
|
|
3
|
+
## 0.16.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 11c61f2: The `package-docs` command will now automatically use a `typedoc.json` file if one exists at the root of your project.
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- 8f56eae: Updated knip-reports to detect dependencies in dev/alpha pattern
|
|
12
|
+
- 05f60e1: Refactored constructor parameter properties to explicit property declarations for compatibility with TypeScript's `erasableSyntaxOnly` setting. This internal refactoring maintains all existing functionality while ensuring TypeScript compilation compatibility.
|
|
13
|
+
- Updated dependencies
|
|
14
|
+
- @backstage/backend-plugin-api@1.5.0
|
|
15
|
+
- @backstage/config-loader@1.10.6
|
|
16
|
+
- @backstage/cli-node@0.2.15
|
|
17
|
+
- @backstage/catalog-model@1.7.6
|
|
18
|
+
|
|
19
|
+
## 0.16.0-next.2
|
|
20
|
+
|
|
21
|
+
### Minor Changes
|
|
22
|
+
|
|
23
|
+
- 11c61f2: The `package-docs` command will now automatically use a `typedoc.json` file if one exists at the root of your project.
|
|
24
|
+
|
|
25
|
+
### Patch Changes
|
|
26
|
+
|
|
27
|
+
- Updated dependencies
|
|
28
|
+
- @backstage/backend-plugin-api@1.5.0-next.2
|
|
29
|
+
|
|
3
30
|
## 0.15.4-next.1
|
|
4
31
|
|
|
5
32
|
### Patch Changes
|
|
@@ -8,10 +8,11 @@ var paths = require('../../lib/paths.cjs.js');
|
|
|
8
8
|
var utils = require('./utils.cjs.js');
|
|
9
9
|
var promises = require('fs/promises');
|
|
10
10
|
var pLimit = require('p-limit');
|
|
11
|
-
var fs = require('fs-extra');
|
|
11
|
+
var fs$1 = require('fs-extra');
|
|
12
12
|
var Cache = require('./Cache.cjs.js');
|
|
13
13
|
var cliNode = require('@backstage/cli-node');
|
|
14
14
|
var glob = require('glob');
|
|
15
|
+
var fs = require('fs');
|
|
15
16
|
|
|
16
17
|
function _interopDefaultCompat (e) { return e && typeof e === 'object' && 'default' in e ? e : { default: e }; }
|
|
17
18
|
|
|
@@ -66,7 +67,7 @@ async function generateDocJson(pkg) {
|
|
|
66
67
|
if (!exports.length || !exports.some((e) => e.startsWith("src") || e.startsWith("./src"))) {
|
|
67
68
|
return false;
|
|
68
69
|
}
|
|
69
|
-
await fs.mkdirp(paths.paths.resolveTargetRoot(`dist-types`, pkg));
|
|
70
|
+
await fs$1.mkdirp(paths.paths.resolveTargetRoot(`dist-types`, pkg));
|
|
70
71
|
const { stdout, stderr } = await execAsync(
|
|
71
72
|
[
|
|
72
73
|
paths.paths.resolveTargetRoot("node_modules/.bin/typedoc"),
|
|
@@ -192,7 +193,8 @@ async function packageDocs(paths$1 = [], opts) {
|
|
|
192
193
|
]),
|
|
193
194
|
...HIGHLIGHT_LANGUAGES.flatMap((e) => ["--highlightLanguages", e]),
|
|
194
195
|
"--out",
|
|
195
|
-
paths.paths.resolveTargetRoot("type-docs")
|
|
196
|
+
paths.paths.resolveTargetRoot("type-docs"),
|
|
197
|
+
...fs.existsSync(paths.paths.resolveTargetRoot("typedoc.json")) ? ["--options", paths.paths.resolveTargetRoot("typedoc.json")] : []
|
|
196
198
|
].join(" "),
|
|
197
199
|
{
|
|
198
200
|
cwd: paths.paths.targetRoot
|
package/dist/package.json.cjs.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/repo-tools",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.16.0",
|
|
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.5.0
|
|
47
|
-
"@backstage/catalog-model": "1.7.6
|
|
48
|
-
"@backstage/cli-common": "0.1.15",
|
|
49
|
-
"@backstage/cli-node": "0.2.15
|
|
50
|
-
"@backstage/config-loader": "1.10.6
|
|
51
|
-
"@backstage/errors": "1.2.7",
|
|
46
|
+
"@backstage/backend-plugin-api": "^1.5.0",
|
|
47
|
+
"@backstage/catalog-model": "^1.7.6",
|
|
48
|
+
"@backstage/cli-common": "^0.1.15",
|
|
49
|
+
"@backstage/cli-node": "^0.2.15",
|
|
50
|
+
"@backstage/config-loader": "^1.10.6",
|
|
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.10.0
|
|
90
|
-
"@backstage/cli": "0.34.5
|
|
91
|
-
"@backstage/types": "1.2.2",
|
|
89
|
+
"@backstage/backend-test-utils": "^1.10.0",
|
|
90
|
+
"@backstage/cli": "^0.34.5",
|
|
91
|
+
"@backstage/types": "^1.2.2",
|
|
92
92
|
"@types/is-glob": "^4.0.2",
|
|
93
93
|
"@types/node": "^20.16.0",
|
|
94
94
|
"@types/prettier": "^2.0.0",
|