@backstage/repo-tools 0.9.7-next.1 → 0.9.7-next.2
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,18 @@
|
|
|
1
1
|
# @backstage/repo-tools
|
|
2
2
|
|
|
3
|
+
## 0.9.7-next.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 1a8837e: Avoid generating API reports for packages with `backstage.inline` set.
|
|
8
|
+
- Updated dependencies
|
|
9
|
+
- @backstage/backend-plugin-api@1.0.0-next.2
|
|
10
|
+
- @backstage/cli-node@0.2.8-next.0
|
|
11
|
+
- @backstage/config-loader@1.9.1-next.0
|
|
12
|
+
- @backstage/catalog-model@1.6.0
|
|
13
|
+
- @backstage/cli-common@0.1.14
|
|
14
|
+
- @backstage/errors@1.2.4
|
|
15
|
+
|
|
3
16
|
## 0.9.7-next.1
|
|
4
17
|
|
|
5
18
|
### Patch Changes
|
|
@@ -881,6 +881,9 @@ async function categorizePackageDirs(packageDirs) {
|
|
|
881
881
|
if (!role) {
|
|
882
882
|
return;
|
|
883
883
|
}
|
|
884
|
+
if (pkgJson?.backstage?.inline) {
|
|
885
|
+
return;
|
|
886
|
+
}
|
|
884
887
|
if (role === "cli") {
|
|
885
888
|
cliPackageDirs.push(dir);
|
|
886
889
|
} else if (role !== "frontend" && role !== "backend") {
|
|
@@ -1119,4 +1122,4 @@ function parseArrayOption(value) {
|
|
|
1119
1122
|
}
|
|
1120
1123
|
|
|
1121
1124
|
exports.buildApiReports = buildApiReports;
|
|
1122
|
-
//# sourceMappingURL=api-reports-
|
|
1125
|
+
//# sourceMappingURL=api-reports-_IpmreNR.cjs.js.map
|
package/dist/index.cjs.js
CHANGED
|
@@ -148,7 +148,7 @@ function registerCommands(program) {
|
|
|
148
148
|
"Turn on release tag validation for the public, beta, and alpha APIs"
|
|
149
149
|
).description("Generate an API report for selected packages").action(
|
|
150
150
|
lazy(
|
|
151
|
-
() => Promise.resolve().then(function () { return require('./cjs/api-reports-
|
|
151
|
+
() => Promise.resolve().then(function () { return require('./cjs/api-reports-_IpmreNR.cjs.js'); }).then((m) => m.buildApiReports)
|
|
152
152
|
)
|
|
153
153
|
);
|
|
154
154
|
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-DgJcEpV_.cjs.js'); }).then((m) => m.default)));
|
|
@@ -187,7 +187,7 @@ function lazy(getActionFunc) {
|
|
|
187
187
|
};
|
|
188
188
|
}
|
|
189
189
|
|
|
190
|
-
var version = "0.9.7-next.
|
|
190
|
+
var version = "0.9.7-next.2";
|
|
191
191
|
|
|
192
192
|
const main = (argv) => {
|
|
193
193
|
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.9.7-next.
|
|
4
|
+
"version": "0.9.7-next.2",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
7
7
|
},
|
|
@@ -43,11 +43,11 @@
|
|
|
43
43
|
"dependencies": {
|
|
44
44
|
"@apidevtools/swagger-parser": "^10.1.0",
|
|
45
45
|
"@apisyouwonthate/style-guide": "^1.4.0",
|
|
46
|
-
"@backstage/backend-plugin-api": "^0.
|
|
46
|
+
"@backstage/backend-plugin-api": "^1.0.0-next.2",
|
|
47
47
|
"@backstage/catalog-model": "^1.6.0",
|
|
48
48
|
"@backstage/cli-common": "^0.1.14",
|
|
49
|
-
"@backstage/cli-node": "^0.2.
|
|
50
|
-
"@backstage/config-loader": "^1.9.0",
|
|
49
|
+
"@backstage/cli-node": "^0.2.8-next.0",
|
|
50
|
+
"@backstage/config-loader": "^1.9.1-next.0",
|
|
51
51
|
"@backstage/errors": "^1.2.4",
|
|
52
52
|
"@manypkg/get-packages": "^1.1.3",
|
|
53
53
|
"@microsoft/api-documenter": "^7.22.33",
|
|
@@ -77,8 +77,8 @@
|
|
|
77
77
|
"yaml-diff-patch": "^2.0.0"
|
|
78
78
|
},
|
|
79
79
|
"devDependencies": {
|
|
80
|
-
"@backstage/backend-test-utils": "^0.
|
|
81
|
-
"@backstage/cli": "^0.27.1-next.
|
|
80
|
+
"@backstage/backend-test-utils": "^1.0.0-next.2",
|
|
81
|
+
"@backstage/cli": "^0.27.1-next.2",
|
|
82
82
|
"@backstage/types": "^1.1.1",
|
|
83
83
|
"@types/is-glob": "^4.0.2",
|
|
84
84
|
"@types/node": "^18.17.8",
|