@backstage/repo-tools 0.1.4-next.0 → 0.1.4-next.1
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 +9 -0
- package/dist/cjs/{index/api-reports-3369eaf5.cjs.js → api-reports-f39f7b2c.cjs.js} +2 -2
- package/dist/cjs/{index/entryPoints-c420d90d.cjs.js → entryPoints-c9b88245.cjs.js} +1 -1
- package/dist/cjs/{index/type-deps-db1fb735.cjs.js → type-deps-5eacd931.cjs.js} +2 -2
- package/dist/index.cjs.js +2 -2
- package/package.json +3 -2
package/CHANGELOG.md
CHANGED
|
@@ -17,7 +17,7 @@ var g = require('glob');
|
|
|
17
17
|
var isGlob = require('is-glob');
|
|
18
18
|
var util = require('util');
|
|
19
19
|
var minimatch = require('minimatch');
|
|
20
|
-
var entryPoints = require('./entryPoints-
|
|
20
|
+
var entryPoints = require('./entryPoints-c9b88245.cjs.js');
|
|
21
21
|
|
|
22
22
|
function _interopDefaultLegacy (e) { return e && typeof e === 'object' && 'default' in e ? e : { 'default': e }; }
|
|
23
23
|
|
|
@@ -1193,4 +1193,4 @@ function parseArrayOption(value) {
|
|
|
1193
1193
|
}
|
|
1194
1194
|
|
|
1195
1195
|
exports.buildApiReports = buildApiReports;
|
|
1196
|
-
//# sourceMappingURL=api-reports-
|
|
1196
|
+
//# sourceMappingURL=api-reports-f39f7b2c.cjs.js.map
|
|
@@ -4,7 +4,7 @@ var fs = require('fs');
|
|
|
4
4
|
var path = require('path');
|
|
5
5
|
var chalk = require('chalk');
|
|
6
6
|
var getPackages = require('@manypkg/get-packages');
|
|
7
|
-
var entryPoints = require('./entryPoints-
|
|
7
|
+
var entryPoints = require('./entryPoints-c9b88245.cjs.js');
|
|
8
8
|
|
|
9
9
|
function _interopDefaultLegacy (e) { return e && typeof e === 'object' && 'default' in e ? e : { 'default': e }; }
|
|
10
10
|
|
|
@@ -174,4 +174,4 @@ function mkErr(name, msg, extra) {
|
|
|
174
174
|
}
|
|
175
175
|
|
|
176
176
|
exports["default"] = typeDeps;
|
|
177
|
-
//# sourceMappingURL=type-deps-
|
|
177
|
+
//# sourceMappingURL=type-deps-5eacd931.cjs.js.map
|
package/dist/index.cjs.js
CHANGED
|
@@ -53,10 +53,10 @@ function registerCommands(program) {
|
|
|
53
53
|
"Turn on release tag validation for the public, beta, and alpha APIs"
|
|
54
54
|
).description("Generate an API report for selected packages").action(
|
|
55
55
|
lazy(
|
|
56
|
-
() => Promise.resolve().then(function () { return require('./cjs/
|
|
56
|
+
() => Promise.resolve().then(function () { return require('./cjs/api-reports-f39f7b2c.cjs.js'); }).then((m) => m.buildApiReports)
|
|
57
57
|
)
|
|
58
58
|
);
|
|
59
|
-
program.command("type-deps").description("Find inconsistencies in types of all packages and plugins").action(lazy(() => Promise.resolve().then(function () { return require('./cjs/
|
|
59
|
+
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)));
|
|
60
60
|
}
|
|
61
61
|
function lazy(getActionFunc) {
|
|
62
62
|
return async (...args) => {
|
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.1.4-next.
|
|
4
|
+
"version": "0.1.4-next.1",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
7
7
|
},
|
|
@@ -44,10 +44,11 @@
|
|
|
44
44
|
"ts-node": "^10.0.0"
|
|
45
45
|
},
|
|
46
46
|
"devDependencies": {
|
|
47
|
-
"@backstage/cli": "^0.22.6-next.
|
|
47
|
+
"@backstage/cli": "^0.22.6-next.1",
|
|
48
48
|
"@backstage/types": "^1.0.2",
|
|
49
49
|
"@types/is-glob": "^4.0.2",
|
|
50
50
|
"@types/mock-fs": "^4.13.0",
|
|
51
|
+
"@types/node": "^16.11.26",
|
|
51
52
|
"mock-fs": "^5.1.0"
|
|
52
53
|
},
|
|
53
54
|
"peerDependencies": {
|