@backstage/repo-tools 0.6.3-next.0 → 0.6.3
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,16 +1,28 @@
|
|
|
1
1
|
# @backstage/repo-tools
|
|
2
2
|
|
|
3
|
-
## 0.6.3
|
|
3
|
+
## 0.6.3
|
|
4
4
|
|
|
5
5
|
### Patch Changes
|
|
6
6
|
|
|
7
|
-
- 999224f: Bump dependency `minimatch` to v9
|
|
8
7
|
- Updated dependencies
|
|
9
|
-
- @backstage/backend-common@0.21.3
|
|
10
|
-
- @backstage/
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
8
|
+
- @backstage/backend-common@0.21.3
|
|
9
|
+
- @backstage/cli-node@0.2.3
|
|
10
|
+
|
|
11
|
+
## 0.6.2
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- Updated dependencies
|
|
16
|
+
- @backstage/backend-common@0.21.2
|
|
17
|
+
- @backstage/cli-node@0.2.3
|
|
18
|
+
|
|
19
|
+
## 0.6.1
|
|
20
|
+
|
|
21
|
+
### Patch Changes
|
|
22
|
+
|
|
23
|
+
- Updated dependencies
|
|
24
|
+
- @backstage/backend-common@0.21.1
|
|
25
|
+
- @backstage/cli-node@0.2.3
|
|
14
26
|
|
|
15
27
|
## 0.6.0
|
|
16
28
|
|
|
@@ -25,6 +25,7 @@ require('p-limit');
|
|
|
25
25
|
function _interopDefaultLegacy (e) { return e && typeof e === 'object' && 'default' in e ? e : { 'default': e }; }
|
|
26
26
|
|
|
27
27
|
var fs__default = /*#__PURE__*/_interopDefaultLegacy(fs);
|
|
28
|
+
var minimatch__default = /*#__PURE__*/_interopDefaultLegacy(minimatch);
|
|
28
29
|
|
|
29
30
|
var __defProp = Object.defineProperty;
|
|
30
31
|
var __defNormalProp = (obj, key, value) => key in obj ? __defProp(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
|
@@ -262,7 +263,7 @@ async function runApiExtraction({
|
|
|
262
263
|
lodash.groupBy(packageEntryPoints, (ep) => ep.packageDir)
|
|
263
264
|
)) {
|
|
264
265
|
console.log(`## Processing ${packageDir}`);
|
|
265
|
-
const noBail = Array.isArray(allowWarnings) ? allowWarnings.some((aw) => aw === packageDir ||
|
|
266
|
+
const noBail = Array.isArray(allowWarnings) ? allowWarnings.some((aw) => aw === packageDir || minimatch__default["default"](packageDir, aw)) : allowWarnings;
|
|
266
267
|
const projectFolder = paths.paths.resolveTargetRoot(packageDir);
|
|
267
268
|
const packageFolder = paths.paths.resolveTargetRoot(
|
|
268
269
|
"./dist-types",
|
|
@@ -1156,4 +1157,4 @@ function parseArrayOption(value) {
|
|
|
1156
1157
|
}
|
|
1157
1158
|
|
|
1158
1159
|
exports.buildApiReports = buildApiReports;
|
|
1159
|
-
//# sourceMappingURL=api-reports-
|
|
1160
|
+
//# sourceMappingURL=api-reports-4f93d814.cjs.js.map
|
package/dist/index.cjs.js
CHANGED
|
@@ -113,7 +113,7 @@ function registerCommands(program) {
|
|
|
113
113
|
"Turn on release tag validation for the public, beta, and alpha APIs"
|
|
114
114
|
).description("Generate an API report for selected packages").action(
|
|
115
115
|
lazy(
|
|
116
|
-
() => Promise.resolve().then(function () { return require('./cjs/api-reports-
|
|
116
|
+
() => Promise.resolve().then(function () { return require('./cjs/api-reports-4f93d814.cjs.js'); }).then((m) => m.buildApiReports)
|
|
117
117
|
)
|
|
118
118
|
);
|
|
119
119
|
program.command("type-deps").description("Find inconsistencies in types of all packages and plugins").action(lazy(() => Promise.resolve().then(function () { return require('./cjs/type-deps-5eacd931.cjs.js'); }).then((m) => m.default)));
|
|
@@ -151,7 +151,7 @@ function lazy(getActionFunc) {
|
|
|
151
151
|
};
|
|
152
152
|
}
|
|
153
153
|
|
|
154
|
-
var version = "0.6.3
|
|
154
|
+
var version = "0.6.3";
|
|
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.6.3
|
|
4
|
+
"version": "0.6.3",
|
|
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.3
|
|
36
|
-
"@backstage/catalog-model": "^1.4.
|
|
35
|
+
"@backstage/backend-common": "^0.21.3",
|
|
36
|
+
"@backstage/catalog-model": "^1.4.4",
|
|
37
37
|
"@backstage/cli-common": "^0.1.13",
|
|
38
|
-
"@backstage/cli-node": "^0.2.
|
|
39
|
-
"@backstage/errors": "^1.2.
|
|
38
|
+
"@backstage/cli-node": "^0.2.3",
|
|
39
|
+
"@backstage/errors": "^1.2.3",
|
|
40
40
|
"@manypkg/get-packages": "^1.1.3",
|
|
41
41
|
"@microsoft/api-documenter": "^7.22.33",
|
|
42
42
|
"@microsoft/api-extractor": "^7.36.4",
|
|
@@ -56,15 +56,15 @@
|
|
|
56
56
|
"is-glob": "^4.0.3",
|
|
57
57
|
"js-yaml": "^4.1.0",
|
|
58
58
|
"lodash": "^4.17.21",
|
|
59
|
-
"minimatch": "^
|
|
59
|
+
"minimatch": "^5.1.1",
|
|
60
60
|
"p-limit": "^3.0.2",
|
|
61
61
|
"portfinder": "^1.0.32",
|
|
62
62
|
"ts-node": "^10.0.0",
|
|
63
63
|
"yaml-diff-patch": "^2.0.0"
|
|
64
64
|
},
|
|
65
65
|
"devDependencies": {
|
|
66
|
-
"@backstage/backend-test-utils": "^0.3.3
|
|
67
|
-
"@backstage/cli": "^0.25.
|
|
66
|
+
"@backstage/backend-test-utils": "^0.3.3",
|
|
67
|
+
"@backstage/cli": "^0.25.2",
|
|
68
68
|
"@backstage/types": "^1.1.1",
|
|
69
69
|
"@types/is-glob": "^4.0.2",
|
|
70
70
|
"@types/node": "^18.17.8",
|