@backstage/cli 0.11.0 → 0.12.0-next.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 +62 -0
- package/dist/cjs/{build-52b0db70.cjs.js → build-41b160e1.cjs.js} +5 -4
- package/dist/cjs/{build-cee864c1.cjs.js → build-5e469530.cjs.js} +5 -4
- package/dist/cjs/{build-821a11bc.cjs.js → build-6a564e18.cjs.js} +8 -4
- package/dist/cjs/{build-3ec9b2bc.cjs.js → build-e1cfa92a.cjs.js} +5 -5
- package/dist/cjs/{buildWorkspace-45130a91.cjs.js → buildWorkspace-b198351d.cjs.js} +4 -4
- package/dist/cjs/{bump-a67373dc.cjs.js → bump-0d4c7e07.cjs.js} +5 -5
- package/dist/cjs/{bundle-a7edd074.cjs.js → bundle-2cb505f3.cjs.js} +5 -5
- package/dist/cjs/{clean-639396b1.cjs.js → clean-265d3ed5.cjs.js} +2 -2
- package/dist/cjs/{config-123cfeb7.cjs.js → config-a790fbee.cjs.js} +4 -3
- package/dist/cjs/{create-fa295702.cjs.js → create-8dc87021.cjs.js} +4 -4
- package/dist/cjs/{createPlugin-e3f24ce4.cjs.js → createPlugin-f480902b.cjs.js} +4 -4
- package/dist/cjs/{dev-770fcb5a.cjs.js → dev-558ef0c6.cjs.js} +4 -4
- package/dist/cjs/{diff-1cb77679.cjs.js → diff-7382e071.cjs.js} +2 -2
- package/dist/cjs/{docs-0c0c53e6.cjs.js → docs-a44be9cd.cjs.js} +3 -3
- package/dist/cjs/{index-79dd2453.cjs.js → index-1f61de85.cjs.js} +3 -3
- package/dist/cjs/{index-f1e57e57.cjs.js → index-63774350.cjs.js} +2 -2
- package/dist/cjs/{index-cf8ea481.cjs.js → index-92454bcd.cjs.js} +47 -48
- package/dist/cjs/{info-ac02891f.cjs.js → info-643074cc.cjs.js} +3 -3
- package/dist/cjs/{install-f342f3ba.cjs.js → install-c8b107f7.cjs.js} +4 -4
- package/dist/cjs/{lint-b832c4cb.cjs.js → lint-25eb1889.cjs.js} +3 -3
- package/dist/cjs/{lint-a6f00949.cjs.js → lint-5aa2e47f.cjs.js} +3 -3
- package/dist/cjs/pack-a5e15cdb.cjs.js +69 -0
- package/dist/cjs/{packager-23503c79.cjs.js → packager-052876f4.cjs.js} +101 -8
- package/dist/cjs/{packages-c57bbd82.cjs.js → packages-435d71fd.cjs.js} +3 -3
- package/dist/cjs/{paths-8ed90bf4.cjs.js → paths-21c29d56.cjs.js} +3 -3
- package/dist/cjs/{print-806737e5.cjs.js → print-207cc148.cjs.js} +3 -3
- package/dist/cjs/{removePlugin-4925434c.cjs.js → removePlugin-350b9293.cjs.js} +3 -3
- package/dist/cjs/{run-267170f8.cjs.js → run-ad69ea39.cjs.js} +2 -2
- package/dist/cjs/{schema-80d0f67f.cjs.js → schema-aa853b70.cjs.js} +3 -3
- package/dist/cjs/{serve-da609963.cjs.js → serve-90512169.cjs.js} +7 -7
- package/dist/cjs/{serve-08f7c81f.cjs.js → serve-d962519a.cjs.js} +6 -6
- package/dist/cjs/{server-8a3d6585.cjs.js → server-acd52f96.cjs.js} +2 -2
- package/dist/cjs/{tasks-6f86c24f.cjs.js → tasks-7bce14e6.cjs.js} +2 -2
- package/dist/cjs/{testCommand-08baa990.cjs.js → testCommand-0e57c1d2.cjs.js} +3 -3
- package/dist/cjs/{validate-b3cefb09.cjs.js → validate-878f8022.cjs.js} +5 -4
- package/dist/index.cjs.js +1 -1
- package/package.json +21 -14
- package/dist/cjs/pack-30336e9e.cjs.js +0 -42
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,67 @@
|
|
|
1
1
|
# @backstage/cli
|
|
2
2
|
|
|
3
|
+
## 0.12.0-next.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 08fa6a604a: Removed the `typescript` dependency from the Backstage CLI in order to decouple the TypeScript version in Backstage projects. To keep using a specific TypeScript version, be sure to add an explicit dependency in your root `package.json`:
|
|
8
|
+
|
|
9
|
+
```json
|
|
10
|
+
"dependencies": {
|
|
11
|
+
...
|
|
12
|
+
"typescript": "~4.5.4",
|
|
13
|
+
}
|
|
14
|
+
```
|
|
15
|
+
|
|
16
|
+
We recommend using a `~` version range since TypeScript releases do not adhere to semver.
|
|
17
|
+
|
|
18
|
+
It may be the case that you end up with errors if you upgrade the TypeScript version. This is because there was a change to TypeScript not long ago that defaulted the type of errors caught in `catch` blocks to `unknown`. You can work around this by adding `"useUnknownInCatchVariables": false` to the `"compilerOptions"` in your `tsconfig.json`:
|
|
19
|
+
|
|
20
|
+
```json
|
|
21
|
+
"compilerOptions": {
|
|
22
|
+
...
|
|
23
|
+
"useUnknownInCatchVariables": false
|
|
24
|
+
}
|
|
25
|
+
```
|
|
26
|
+
|
|
27
|
+
Another option is to use the utilities from `@backstage/errors` to assert the type of errors caught in `catch` blocks:
|
|
28
|
+
|
|
29
|
+
```ts
|
|
30
|
+
import { assertError, isError } from '@backstage/errors';
|
|
31
|
+
|
|
32
|
+
try {
|
|
33
|
+
...
|
|
34
|
+
} catch (error) {
|
|
35
|
+
assertError(error);
|
|
36
|
+
...
|
|
37
|
+
// OR
|
|
38
|
+
if (isError(error)) {
|
|
39
|
+
...
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
```
|
|
43
|
+
|
|
44
|
+
### Patch Changes
|
|
45
|
+
|
|
46
|
+
- 6e34e2cfbf: Introduce `--deprecated` option to `config:check` to log all deprecated app configuration properties
|
|
47
|
+
|
|
48
|
+
```sh
|
|
49
|
+
$ yarn backstage-cli config:check --lax --deprecated
|
|
50
|
+
config:check --lax --deprecated
|
|
51
|
+
Loaded config from app-config.yaml
|
|
52
|
+
The configuration key 'catalog.processors.githubOrg' of app-config.yaml is deprecated and may be removed soon. Configure a GitHub integration instead.
|
|
53
|
+
```
|
|
54
|
+
|
|
55
|
+
- 2a42d573d2: Introduced a new `--experimental-type-build` option to the various package build commands. This option switches the type definition build to be executed using API Extractor rather than a `rollup` plugin. In order for this experimental switch to work, you must also have `@microsoft/api-extractor` installed within your project, as it is an optional peer dependency.
|
|
56
|
+
|
|
57
|
+
The biggest difference between the existing mode and the experimental one is that rather than just building a single `dist/index.d.ts` file, API Extractor will output `index.d.ts`, `index.beta.d.ts`, and `index.alpha.d.ts`, all in the `dist` directory. Each of these files will have exports from more unstable release stages stripped, meaning that `index.d.ts` will omit all exports marked with `@alpha` or `@beta`, while `index.beta.d.ts` will omit all exports marked with `@alpha`.
|
|
58
|
+
|
|
59
|
+
In addition, the `prepack` command now has support for `alphaTypes` and `betaTypes` fields in the `publishConfig` of `package.json`. These optional fields can be pointed to `dist/types.alpha.d.ts` and `dist/types.beta.d.ts` respectively, which will cause `<name>/alpha` and `<name>/beta` entry points to be generated for the package. See the [`@backstage/catalog-model`](https://github.com/backstage/backstage/blob/master/packages/catalog-model/package.json) package for an example of how this can be used in practice.
|
|
60
|
+
|
|
61
|
+
- Updated dependencies
|
|
62
|
+
- @backstage/config@0.1.13-next.0
|
|
63
|
+
- @backstage/config-loader@0.9.3-next.0
|
|
64
|
+
|
|
3
65
|
## 0.11.0
|
|
4
66
|
|
|
5
67
|
### Minor Changes
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
-
var packager = require('./packager-
|
|
3
|
+
var packager = require('./packager-052876f4.cjs.js');
|
|
4
4
|
require('fs-extra');
|
|
5
5
|
require('rollup');
|
|
6
6
|
require('chalk');
|
|
7
7
|
require('path');
|
|
8
|
-
require('./index-
|
|
8
|
+
require('./index-92454bcd.cjs.js');
|
|
9
9
|
require('commander');
|
|
10
10
|
require('semver');
|
|
11
11
|
require('@backstage/cli-common');
|
|
@@ -26,9 +26,10 @@ require('./svgrTemplate-f19e974c.cjs.js');
|
|
|
26
26
|
var build = async (cmd) => {
|
|
27
27
|
await packager.buildPackage({
|
|
28
28
|
outputs: /* @__PURE__ */ new Set([packager.Output.esm, packager.Output.types]),
|
|
29
|
-
minify: cmd.minify
|
|
29
|
+
minify: cmd.minify,
|
|
30
|
+
useApiExtractor: cmd.experimentalTypeBuild
|
|
30
31
|
});
|
|
31
32
|
};
|
|
32
33
|
|
|
33
34
|
exports["default"] = build;
|
|
34
|
-
//# sourceMappingURL=build-
|
|
35
|
+
//# sourceMappingURL=build-41b160e1.cjs.js.map
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
-
var packager = require('./packager-
|
|
3
|
+
var packager = require('./packager-052876f4.cjs.js');
|
|
4
4
|
require('fs-extra');
|
|
5
5
|
require('rollup');
|
|
6
6
|
require('chalk');
|
|
7
7
|
require('path');
|
|
8
|
-
require('./index-
|
|
8
|
+
require('./index-92454bcd.cjs.js');
|
|
9
9
|
require('commander');
|
|
10
10
|
require('semver');
|
|
11
11
|
require('@backstage/cli-common');
|
|
@@ -26,9 +26,10 @@ require('./svgrTemplate-f19e974c.cjs.js');
|
|
|
26
26
|
var build = async (cmd) => {
|
|
27
27
|
await packager.buildPackage({
|
|
28
28
|
outputs: /* @__PURE__ */ new Set([packager.Output.cjs, packager.Output.types]),
|
|
29
|
-
minify: cmd.minify
|
|
29
|
+
minify: cmd.minify,
|
|
30
|
+
useApiExtractor: cmd.experimentalTypeBuild
|
|
30
31
|
});
|
|
31
32
|
};
|
|
32
33
|
|
|
33
34
|
exports["default"] = build;
|
|
34
|
-
//# sourceMappingURL=build-
|
|
35
|
+
//# sourceMappingURL=build-5e469530.cjs.js.map
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
-
var packager = require('./packager-
|
|
3
|
+
var packager = require('./packager-052876f4.cjs.js');
|
|
4
4
|
require('fs-extra');
|
|
5
5
|
require('rollup');
|
|
6
6
|
require('chalk');
|
|
7
7
|
require('path');
|
|
8
|
-
require('./index-
|
|
8
|
+
require('./index-92454bcd.cjs.js');
|
|
9
9
|
require('commander');
|
|
10
10
|
require('semver');
|
|
11
11
|
require('@backstage/cli-common');
|
|
@@ -37,8 +37,12 @@ var build = async (cmd) => {
|
|
|
37
37
|
} else {
|
|
38
38
|
outputs = /* @__PURE__ */ new Set([packager.Output.types, packager.Output.esm, packager.Output.cjs]);
|
|
39
39
|
}
|
|
40
|
-
await packager.buildPackage({
|
|
40
|
+
await packager.buildPackage({
|
|
41
|
+
outputs,
|
|
42
|
+
minify: cmd.minify,
|
|
43
|
+
useApiExtractor: cmd.experimentalTypeBuild
|
|
44
|
+
});
|
|
41
45
|
};
|
|
42
46
|
|
|
43
47
|
exports["default"] = build;
|
|
44
|
-
//# sourceMappingURL=build-
|
|
48
|
+
//# sourceMappingURL=build-6a564e18.cjs.js.map
|
|
@@ -11,10 +11,10 @@ require('run-script-webpack-plugin');
|
|
|
11
11
|
require('webpack-node-externals');
|
|
12
12
|
require('@backstage/cli-common');
|
|
13
13
|
require('@manypkg/get-packages');
|
|
14
|
-
var paths = require('./paths-
|
|
14
|
+
var paths = require('./paths-21c29d56.cjs.js');
|
|
15
15
|
require('mini-css-extract-plugin');
|
|
16
|
-
var index = require('./index-
|
|
17
|
-
require('./run-
|
|
16
|
+
var index = require('./index-92454bcd.cjs.js');
|
|
17
|
+
require('./run-ad69ea39.cjs.js');
|
|
18
18
|
require('lodash/pickBy');
|
|
19
19
|
var yn = require('yn');
|
|
20
20
|
var FileSizeReporter = require('react-dev-utils/FileSizeReporter');
|
|
@@ -22,7 +22,7 @@ var formatWebpackMessages = require('react-dev-utils/formatWebpackMessages');
|
|
|
22
22
|
require('webpack-dev-server');
|
|
23
23
|
require('react-dev-utils/openBrowser');
|
|
24
24
|
var parallel = require('./parallel-7e32a8d0.cjs.js');
|
|
25
|
-
var config = require('./config-
|
|
25
|
+
var config = require('./config-a790fbee.cjs.js');
|
|
26
26
|
require('./svgrTemplate-f19e974c.cjs.js');
|
|
27
27
|
require('commander');
|
|
28
28
|
require('semver');
|
|
@@ -140,4 +140,4 @@ var build = async (cmd) => {
|
|
|
140
140
|
};
|
|
141
141
|
|
|
142
142
|
exports["default"] = build;
|
|
143
|
-
//# sourceMappingURL=build-
|
|
143
|
+
//# sourceMappingURL=build-e1cfa92a.cjs.js.map
|
|
@@ -1,18 +1,18 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
3
|
var fs = require('fs-extra');
|
|
4
|
-
var index = require('./index-
|
|
4
|
+
var index = require('./index-1f61de85.cjs.js');
|
|
5
5
|
require('path');
|
|
6
6
|
require('os');
|
|
7
7
|
require('tar');
|
|
8
|
-
require('./index-
|
|
8
|
+
require('./index-92454bcd.cjs.js');
|
|
9
9
|
require('commander');
|
|
10
10
|
require('chalk');
|
|
11
11
|
require('semver');
|
|
12
12
|
require('@backstage/cli-common');
|
|
13
13
|
require('@backstage/config/package.json');
|
|
14
14
|
require('@backstage/errors');
|
|
15
|
-
require('./run-
|
|
15
|
+
require('./run-ad69ea39.cjs.js');
|
|
16
16
|
require('child_process');
|
|
17
17
|
require('util');
|
|
18
18
|
require('@manypkg/get-packages');
|
|
@@ -32,4 +32,4 @@ var buildWorkspace = async (dir, _cmd, packages) => {
|
|
|
32
32
|
};
|
|
33
33
|
|
|
34
34
|
exports["default"] = buildWorkspace;
|
|
35
|
-
//# sourceMappingURL=buildWorkspace-
|
|
35
|
+
//# sourceMappingURL=buildWorkspace-b198351d.cjs.js.map
|
|
@@ -6,11 +6,11 @@ var semver = require('semver');
|
|
|
6
6
|
var minimatch = require('minimatch');
|
|
7
7
|
var errors = require('@backstage/errors');
|
|
8
8
|
var path = require('path');
|
|
9
|
-
var run = require('./run-
|
|
10
|
-
var index = require('./index-
|
|
9
|
+
var run = require('./run-ad69ea39.cjs.js');
|
|
10
|
+
var index = require('./index-92454bcd.cjs.js');
|
|
11
11
|
var Lockfile = require('./Lockfile-35661afa.cjs.js');
|
|
12
|
-
var packages = require('./packages-
|
|
13
|
-
var lint = require('./lint-
|
|
12
|
+
var packages = require('./packages-435d71fd.cjs.js');
|
|
13
|
+
var lint = require('./lint-25eb1889.cjs.js');
|
|
14
14
|
var cliCommon = require('@backstage/cli-common');
|
|
15
15
|
require('child_process');
|
|
16
16
|
require('util');
|
|
@@ -237,4 +237,4 @@ async function workerThreads(count, items, fn) {
|
|
|
237
237
|
|
|
238
238
|
exports.bumpBackstageJsonVersion = bumpBackstageJsonVersion;
|
|
239
239
|
exports["default"] = bump;
|
|
240
|
-
//# sourceMappingURL=bump-
|
|
240
|
+
//# sourceMappingURL=bump-0d4c7e07.cjs.js.map
|
|
@@ -4,11 +4,11 @@ var os = require('os');
|
|
|
4
4
|
var fs = require('fs-extra');
|
|
5
5
|
var path = require('path');
|
|
6
6
|
var tar = require('tar');
|
|
7
|
-
var index$1 = require('./index-
|
|
8
|
-
var index = require('./index-
|
|
7
|
+
var index$1 = require('./index-1f61de85.cjs.js');
|
|
8
|
+
var index = require('./index-92454bcd.cjs.js');
|
|
9
9
|
var parallel = require('./parallel-7e32a8d0.cjs.js');
|
|
10
|
-
var packager = require('./packager-
|
|
11
|
-
require('./run-
|
|
10
|
+
var packager = require('./packager-052876f4.cjs.js');
|
|
11
|
+
require('./run-ad69ea39.cjs.js');
|
|
12
12
|
require('child_process');
|
|
13
13
|
require('util');
|
|
14
14
|
require('@backstage/errors');
|
|
@@ -69,4 +69,4 @@ var bundle = async (cmd) => {
|
|
|
69
69
|
};
|
|
70
70
|
|
|
71
71
|
exports["default"] = bundle;
|
|
72
|
-
//# sourceMappingURL=bundle-
|
|
72
|
+
//# sourceMappingURL=bundle-2cb505f3.cjs.js.map
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
3
|
var fs = require('fs-extra');
|
|
4
|
-
var index = require('./index-
|
|
4
|
+
var index = require('./index-92454bcd.cjs.js');
|
|
5
5
|
require('commander');
|
|
6
6
|
require('chalk');
|
|
7
7
|
require('semver');
|
|
@@ -20,4 +20,4 @@ async function clean() {
|
|
|
20
20
|
}
|
|
21
21
|
|
|
22
22
|
exports["default"] = clean;
|
|
23
|
-
//# sourceMappingURL=clean-
|
|
23
|
+
//# sourceMappingURL=clean-265d3ed5.cjs.js.map
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
var configLoader = require('@backstage/config-loader');
|
|
4
4
|
var config = require('@backstage/config');
|
|
5
|
-
var index = require('./index-
|
|
5
|
+
var index = require('./index-92454bcd.cjs.js');
|
|
6
6
|
var getPackages = require('@manypkg/get-packages');
|
|
7
7
|
var PackageGraph = require('./PackageGraph-7a0d3a83.cjs.js');
|
|
8
8
|
|
|
@@ -53,7 +53,8 @@ async function loadCliConfig(options) {
|
|
|
53
53
|
try {
|
|
54
54
|
const frontendAppConfigs = schema.process(appConfigs, {
|
|
55
55
|
visibility: options.fullVisibility ? ["frontend", "backend", "secret"] : ["frontend"],
|
|
56
|
-
withFilteredKeys: options.withFilteredKeys
|
|
56
|
+
withFilteredKeys: options.withFilteredKeys,
|
|
57
|
+
withDeprecatedKeys: options.withDeprecatedKeys
|
|
57
58
|
});
|
|
58
59
|
const frontendConfig = config.ConfigReader.fromConfigs(frontendAppConfigs);
|
|
59
60
|
return {
|
|
@@ -75,4 +76,4 @@ async function loadCliConfig(options) {
|
|
|
75
76
|
}
|
|
76
77
|
|
|
77
78
|
exports.loadCliConfig = loadCliConfig;
|
|
78
|
-
//# sourceMappingURL=config-
|
|
79
|
+
//# sourceMappingURL=config-a790fbee.cjs.js.map
|
|
@@ -7,12 +7,12 @@ var chalk = require('chalk');
|
|
|
7
7
|
var inquirer = require('inquirer');
|
|
8
8
|
var camelCase = require('lodash/camelCase');
|
|
9
9
|
var upperFirst = require('lodash/upperFirst');
|
|
10
|
-
var index = require('./index-
|
|
11
|
-
var tasks = require('./tasks-
|
|
10
|
+
var index = require('./index-92454bcd.cjs.js');
|
|
11
|
+
var tasks = require('./tasks-7bce14e6.cjs.js');
|
|
12
12
|
var Lockfile = require('./Lockfile-35661afa.cjs.js');
|
|
13
13
|
require('minimatch');
|
|
14
14
|
require('@manypkg/get-packages');
|
|
15
|
-
require('./run-
|
|
15
|
+
require('./run-ad69ea39.cjs.js');
|
|
16
16
|
var partition = require('lodash/partition');
|
|
17
17
|
var errors = require('@backstage/errors');
|
|
18
18
|
require('commander');
|
|
@@ -482,4 +482,4 @@ var create = async (cmd) => {
|
|
|
482
482
|
};
|
|
483
483
|
|
|
484
484
|
exports["default"] = create;
|
|
485
|
-
//# sourceMappingURL=create-
|
|
485
|
+
//# sourceMappingURL=create-8dc87021.cjs.js.map
|
|
@@ -10,12 +10,12 @@ var camelCase = require('lodash/camelCase');
|
|
|
10
10
|
var upperFirst = require('lodash/upperFirst');
|
|
11
11
|
var os = require('os');
|
|
12
12
|
var errors = require('@backstage/errors');
|
|
13
|
-
var tasks = require('./tasks-
|
|
14
|
-
var index = require('./index-
|
|
13
|
+
var tasks = require('./tasks-7bce14e6.cjs.js');
|
|
14
|
+
var index = require('./index-92454bcd.cjs.js');
|
|
15
15
|
var Lockfile = require('./Lockfile-35661afa.cjs.js');
|
|
16
16
|
require('minimatch');
|
|
17
17
|
require('@manypkg/get-packages');
|
|
18
|
-
require('./run-
|
|
18
|
+
require('./run-ad69ea39.cjs.js');
|
|
19
19
|
require('handlebars');
|
|
20
20
|
require('ora');
|
|
21
21
|
require('recursive-readdir');
|
|
@@ -234,4 +234,4 @@ exports.addPluginExtensionToApp = addPluginExtensionToApp;
|
|
|
234
234
|
exports.capitalize = capitalize;
|
|
235
235
|
exports["default"] = createPlugin;
|
|
236
236
|
exports.movePlugin = movePlugin;
|
|
237
|
-
//# sourceMappingURL=createPlugin-
|
|
237
|
+
//# sourceMappingURL=createPlugin-f480902b.cjs.js.map
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
3
|
var fs = require('fs-extra');
|
|
4
|
-
var index = require('./index-
|
|
4
|
+
var index = require('./index-92454bcd.cjs.js');
|
|
5
5
|
var webpack = require('webpack');
|
|
6
|
-
var paths = require('./paths-
|
|
6
|
+
var paths = require('./paths-21c29d56.cjs.js');
|
|
7
7
|
require('commander');
|
|
8
8
|
require('chalk');
|
|
9
9
|
require('semver');
|
|
@@ -19,7 +19,7 @@ require('webpack-node-externals');
|
|
|
19
19
|
require('@manypkg/get-packages');
|
|
20
20
|
require('mini-css-extract-plugin');
|
|
21
21
|
require('./svgrTemplate-f19e974c.cjs.js');
|
|
22
|
-
require('./run-
|
|
22
|
+
require('./run-ad69ea39.cjs.js');
|
|
23
23
|
require('child_process');
|
|
24
24
|
require('util');
|
|
25
25
|
require('lodash/pickBy');
|
|
@@ -66,4 +66,4 @@ var dev = async (cmd) => {
|
|
|
66
66
|
};
|
|
67
67
|
|
|
68
68
|
exports["default"] = dev;
|
|
69
|
-
//# sourceMappingURL=dev-
|
|
69
|
+
//# sourceMappingURL=dev-558ef0c6.cjs.js.map
|
|
@@ -7,7 +7,7 @@ var path = require('path');
|
|
|
7
7
|
var inquirer = require('inquirer');
|
|
8
8
|
var handlebars = require('handlebars');
|
|
9
9
|
var recursive = require('recursive-readdir');
|
|
10
|
-
var index = require('./index-
|
|
10
|
+
var index = require('./index-92454bcd.cjs.js');
|
|
11
11
|
require('commander');
|
|
12
12
|
require('semver');
|
|
13
13
|
require('@backstage/cli-common');
|
|
@@ -381,4 +381,4 @@ async function readPluginData() {
|
|
|
381
381
|
}
|
|
382
382
|
|
|
383
383
|
exports["default"] = diff;
|
|
384
|
-
//# sourceMappingURL=diff-
|
|
384
|
+
//# sourceMappingURL=diff-7382e071.cjs.js.map
|
|
@@ -2,9 +2,9 @@
|
|
|
2
2
|
|
|
3
3
|
var configLoader = require('@backstage/config-loader');
|
|
4
4
|
var openBrowser = require('react-dev-utils/openBrowser');
|
|
5
|
-
var config = require('./config-
|
|
5
|
+
var config = require('./config-a790fbee.cjs.js');
|
|
6
6
|
require('@backstage/config');
|
|
7
|
-
require('./index-
|
|
7
|
+
require('./index-92454bcd.cjs.js');
|
|
8
8
|
require('commander');
|
|
9
9
|
require('chalk');
|
|
10
10
|
require('fs-extra');
|
|
@@ -31,4 +31,4 @@ var docs = async (cmd) => {
|
|
|
31
31
|
};
|
|
32
32
|
|
|
33
33
|
exports["default"] = docs;
|
|
34
|
-
//# sourceMappingURL=docs-
|
|
34
|
+
//# sourceMappingURL=docs-a44be9cd.cjs.js.map
|
|
@@ -4,8 +4,8 @@ var fs = require('fs-extra');
|
|
|
4
4
|
var path = require('path');
|
|
5
5
|
var os = require('os');
|
|
6
6
|
var tar = require('tar');
|
|
7
|
-
var index = require('./index-
|
|
8
|
-
var run = require('./run-
|
|
7
|
+
var index = require('./index-92454bcd.cjs.js');
|
|
8
|
+
var run = require('./run-ad69ea39.cjs.js');
|
|
9
9
|
var getPackages = require('@manypkg/get-packages');
|
|
10
10
|
var PackageGraph = require('./PackageGraph-7a0d3a83.cjs.js');
|
|
11
11
|
|
|
@@ -103,4 +103,4 @@ async function moveToDistWorkspace(workspaceDir, localPackages) {
|
|
|
103
103
|
}
|
|
104
104
|
|
|
105
105
|
exports.createDistWorkspace = createDistWorkspace;
|
|
106
|
-
//# sourceMappingURL=index-
|
|
106
|
+
//# sourceMappingURL=index-1f61de85.cjs.js.map
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
var fs = require('fs-extra');
|
|
4
4
|
var chalk = require('chalk');
|
|
5
5
|
var yaml = require('yaml');
|
|
6
|
-
var index$1 = require('./index-
|
|
6
|
+
var index$1 = require('./index-92454bcd.cjs.js');
|
|
7
7
|
var crypto = require('crypto');
|
|
8
8
|
var openBrowser = require('react-dev-utils/openBrowser');
|
|
9
9
|
var request = require('@octokit/request');
|
|
@@ -128,4 +128,4 @@ ${yaml.stringify(config)}`;
|
|
|
128
128
|
};
|
|
129
129
|
|
|
130
130
|
exports["default"] = index;
|
|
131
|
-
//# sourceMappingURL=index-
|
|
131
|
+
//# sourceMappingURL=index-63774350.cjs.js.map
|
|
@@ -46,13 +46,13 @@ class NotFoundError extends CustomError {
|
|
|
46
46
|
|
|
47
47
|
const paths = cliCommon.findPaths(__dirname);
|
|
48
48
|
|
|
49
|
-
var version$9 = "0.10.
|
|
49
|
+
var version$9 = "0.10.4-next.0";
|
|
50
50
|
|
|
51
|
-
var version$8 = "0.
|
|
51
|
+
var version$8 = "0.12.0-next.0";
|
|
52
52
|
var dependencies = {
|
|
53
53
|
"@backstage/cli-common": "^0.1.6",
|
|
54
|
-
"@backstage/config": "^0.1.
|
|
55
|
-
"@backstage/config-loader": "^0.9.
|
|
54
|
+
"@backstage/config": "^0.1.13-next.0",
|
|
55
|
+
"@backstage/config-loader": "^0.9.3-next.0",
|
|
56
56
|
"@backstage/errors": "^0.2.0",
|
|
57
57
|
"@backstage/types": "^0.1.1",
|
|
58
58
|
"@hot-loader/react-dom": "^16.13.0",
|
|
@@ -67,8 +67,8 @@ var dependencies = {
|
|
|
67
67
|
"@spotify/eslint-config-typescript": "^12.0.0",
|
|
68
68
|
"@sucrase/jest-plugin": "^2.1.1",
|
|
69
69
|
"@sucrase/webpack-loader": "^2.0.0",
|
|
70
|
-
"@svgr/plugin-jsx": "
|
|
71
|
-
"@svgr/plugin-svgo": "
|
|
70
|
+
"@svgr/plugin-jsx": "6.2.x",
|
|
71
|
+
"@svgr/plugin-svgo": "6.2.x",
|
|
72
72
|
"@svgr/rollup": "5.5.x",
|
|
73
73
|
"@svgr/webpack": "5.5.x",
|
|
74
74
|
"@types/webpack-env": "^1.15.2",
|
|
@@ -127,7 +127,6 @@ var dependencies = {
|
|
|
127
127
|
sucrase: "^3.20.2",
|
|
128
128
|
tar: "^6.1.2",
|
|
129
129
|
"terser-webpack-plugin": "^5.1.3",
|
|
130
|
-
typescript: "^4.0.3",
|
|
131
130
|
util: "^0.12.3",
|
|
132
131
|
webpack: "^5.48.0",
|
|
133
132
|
"webpack-dev-server": "4.3.1",
|
|
@@ -137,13 +136,13 @@ var dependencies = {
|
|
|
137
136
|
yn: "^4.0.0"
|
|
138
137
|
};
|
|
139
138
|
var devDependencies = {
|
|
140
|
-
"@backstage/backend-common": "^0.10.
|
|
141
|
-
"@backstage/config": "^0.1.
|
|
142
|
-
"@backstage/core-components": "^0.8.
|
|
143
|
-
"@backstage/core-plugin-api": "^0.
|
|
144
|
-
"@backstage/core-app-api": "^0.
|
|
145
|
-
"@backstage/dev-utils": "^0.2.
|
|
146
|
-
"@backstage/test-utils": "^0.2.
|
|
139
|
+
"@backstage/backend-common": "^0.10.4-next.0",
|
|
140
|
+
"@backstage/config": "^0.1.13-next.0",
|
|
141
|
+
"@backstage/core-components": "^0.8.5-next.0",
|
|
142
|
+
"@backstage/core-plugin-api": "^0.6.0-next.0",
|
|
143
|
+
"@backstage/core-app-api": "^0.5.0-next.0",
|
|
144
|
+
"@backstage/dev-utils": "^0.2.18-next.0",
|
|
145
|
+
"@backstage/test-utils": "^0.2.3-next.0",
|
|
147
146
|
"@backstage/theme": "^0.2.14",
|
|
148
147
|
"@types/diff": "^5.0.0",
|
|
149
148
|
"@types/express": "^4.17.6",
|
|
@@ -167,19 +166,19 @@ var devDependencies = {
|
|
|
167
166
|
"ts-node": "^10.0.0"
|
|
168
167
|
};
|
|
169
168
|
|
|
170
|
-
var version$7 = "0.
|
|
169
|
+
var version$7 = "0.5.0-next.0";
|
|
171
170
|
|
|
172
|
-
var version$6 = "0.8.
|
|
171
|
+
var version$6 = "0.8.5-next.0";
|
|
173
172
|
|
|
174
|
-
var version$5 = "0.
|
|
173
|
+
var version$5 = "0.6.0-next.0";
|
|
175
174
|
|
|
176
|
-
var version$4 = "0.2.
|
|
175
|
+
var version$4 = "0.2.18-next.0";
|
|
177
176
|
|
|
178
|
-
var version$3 = "0.2.
|
|
177
|
+
var version$3 = "0.2.3-next.0";
|
|
179
178
|
|
|
180
179
|
var version$2 = "0.2.14";
|
|
181
180
|
|
|
182
|
-
var version$1 = "0.15.
|
|
181
|
+
var version$1 = "0.15.21-next.0";
|
|
183
182
|
|
|
184
183
|
const packageVersions = {
|
|
185
184
|
"@backstage/backend-common": version$9,
|
|
@@ -233,33 +232,33 @@ function registerCommands(program) {
|
|
|
233
232
|
(opt, opts) => [...opts, opt],
|
|
234
233
|
Array()
|
|
235
234
|
];
|
|
236
|
-
program.command("app:build").description("Build an app for a production release").option("--stats", "Write bundle stats to output directory").option("--lax", "[DEPRECATED] - Do not require environment variables to be set").option(...configOption).action(lazy(() => Promise.resolve().then(function () { return require('./build-
|
|
237
|
-
program.command("app:serve").description("Serve an app for local development").option("--check", "Enable type checking and linting").option(...configOption).action(lazy(() => Promise.resolve().then(function () { return require('./serve-
|
|
238
|
-
program.command("backend:build").description("Build a backend plugin").option("--minify", "Minify the generated code").action(lazy(() => Promise.resolve().then(function () { return require('./build-
|
|
239
|
-
program.command("backend:bundle").description("Bundle the backend into a deployment archive").option("--build-dependencies", "Build all local package dependencies before bundling the backend").action(lazy(() => Promise.resolve().then(function () { return require('./bundle-
|
|
240
|
-
program.command("backend:dev").description("Start local development server with HMR for the backend").option("--check", "Enable type checking and linting").option("--inspect", "Enable debugger").option("--inspect-brk", "Enable debugger with await to attach debugger").option(...configOption).action(lazy(() => Promise.resolve().then(function () { return require('./dev-
|
|
241
|
-
program.command("create").storeOptionsAsProperties(false).description("Open up an interactive guide to creating new things in your app").option("--select <name>", "Select the thing you want to be creating upfront").option("--option <name>=<value>", "Pre-fill options for the creation process", (opt, arr) => [...arr, opt], []).option("--scope <scope>", "The scope to use for new packages").option("--npm-registry <URL>", "The package registry to use for new packages").option("--no-private", "Do not mark new packages as private").action(lazy(() => Promise.resolve().then(function () { return require('./create-
|
|
242
|
-
program.command("create-plugin").option("--backend", "Create plugin with the backend dependencies as default").description("Creates a new plugin in the current repository").option("--scope <scope>", "npm scope").option("--npm-registry <URL>", "npm registry URL").option("--no-private", "Public npm package").action(lazy(() => Promise.resolve().then(function () { return require('./createPlugin-
|
|
243
|
-
program.command("remove-plugin").description("[DEPRECATED] - Removes plugin in the current repository").action(lazy(() => Promise.resolve().then(function () { return require('./removePlugin-
|
|
244
|
-
program.command("plugin:build").description("Build a plugin").option("--minify", "Minify the generated code").action(lazy(() => Promise.resolve().then(function () { return require('./build-
|
|
245
|
-
program.command("plugin:serve").description("Serves the dev/ folder of a plugin").option("--check", "Enable type checking and linting").option(...configOption).action(lazy(() => Promise.resolve().then(function () { return require('./serve-
|
|
246
|
-
program.command("plugin:diff").option("--check", "Fail if changes are required").option("--yes", "Apply all changes").description("Diff an existing plugin with the creation template").action(lazy(() => Promise.resolve().then(function () { return require('./diff-
|
|
247
|
-
program.command("build").description("Build a package for publishing").option("--outputs <formats>", "List of formats to output [types,cjs,esm]").option("--minify", "Minify the generated code").action(lazy(() => Promise.resolve().then(function () { return require('./build-
|
|
248
|
-
program.command("lint").option("--format <format>", "Lint report output format", "eslint-formatter-friendly").option("--fix", "Attempt to automatically fix violations").description("Lint a package").action(lazy(() => Promise.resolve().then(function () { return require('./lint-
|
|
249
|
-
program.command("test").allowUnknownOption(true).helpOption(", --backstage-cli-help").description("Run tests, forwarding args to Jest, defaulting to watch mode").action(lazy(() => Promise.resolve().then(function () { return require('./testCommand-
|
|
250
|
-
program.command("config:docs").option("--package <name>", "Only include the schema that applies to the given package").description("Browse the configuration reference documentation").action(lazy(() => Promise.resolve().then(function () { return require('./docs-
|
|
251
|
-
program.command("config:print").option("--package <name>", "Only load config schema that applies to the given package").option("--lax", "Do not require environment variables to be set").option("--frontend", "Print only the frontend configuration").option("--with-secrets", "Include secrets in the printed configuration").option("--format <format>", "Format to print the configuration in, either json or yaml [yaml]").option(...configOption).description("Print the app configuration for the current package").action(lazy(() => Promise.resolve().then(function () { return require('./print-
|
|
252
|
-
program.command("config:check").option("--package <name>", "Only load config schema that applies to the given package").option("--lax", "Do not require environment variables to be set").option("--frontend", "Only validate the frontend configuration").option(...configOption).description("Validate that the given configuration loads and matches schema").action(lazy(() => Promise.resolve().then(function () { return require('./validate-
|
|
253
|
-
program.command("config:schema").option("--package <name>", "Only output config schema that applies to the given package").option("--format <format>", "Format to print the schema in, either json or yaml [yaml]").description("Print configuration schema").action(lazy(() => Promise.resolve().then(function () { return require('./schema-
|
|
254
|
-
program.command("versions:bump").option("--pattern <glob>", "Override glob for matching packages to upgrade").description("Bump Backstage packages to the latest versions").action(lazy(() => Promise.resolve().then(function () { return require('./bump-
|
|
255
|
-
program.command("versions:check").option("--fix", "Fix any auto-fixable versioning problems").description("Check Backstage package versioning").action(lazy(() => Promise.resolve().then(function () { return require('./lint-
|
|
256
|
-
program.command("prepack").description("Prepares a package for packaging before publishing").action(lazy(() => Promise.resolve().then(function () { return require('./pack-
|
|
257
|
-
program.command("postpack").description("Restores the changes made by the prepack command").action(lazy(() => Promise.resolve().then(function () { return require('./pack-
|
|
258
|
-
program.command("clean").description("Delete cache directories").action(lazy(() => Promise.resolve().then(function () { return require('./clean-
|
|
259
|
-
program.command("build-workspace <workspace-dir> ...<packages>").description("Builds a temporary dist workspace from the provided packages").action(lazy(() => Promise.resolve().then(function () { return require('./buildWorkspace-
|
|
260
|
-
program.command("create-github-app <github-org>").description("Create new GitHub App in your organization.").action(lazy(() => Promise.resolve().then(function () { return require('./index-
|
|
261
|
-
program.command("info").description("Show helpful information for debugging and reporting bugs").action(lazy(() => Promise.resolve().then(function () { return require('./info-
|
|
262
|
-
program.command("install [plugin-id]", { hidden: true }).option("--from <packageJsonFilePath>", "Install from a local package.json containing the installation recipe").description("Install a Backstage plugin [EXPERIMENTAL]").action(lazy(() => Promise.resolve().then(function () { return require('./install-
|
|
235
|
+
program.command("app:build").description("Build an app for a production release").option("--stats", "Write bundle stats to output directory").option("--lax", "[DEPRECATED] - Do not require environment variables to be set").option(...configOption).action(lazy(() => Promise.resolve().then(function () { return require('./build-e1cfa92a.cjs.js'); }).then((m) => m.default)));
|
|
236
|
+
program.command("app:serve").description("Serve an app for local development").option("--check", "Enable type checking and linting").option(...configOption).action(lazy(() => Promise.resolve().then(function () { return require('./serve-90512169.cjs.js'); }).then((m) => m.default)));
|
|
237
|
+
program.command("backend:build").description("Build a backend plugin").option("--minify", "Minify the generated code").option("--experimental-type-build", "Enable experimental type build").action(lazy(() => Promise.resolve().then(function () { return require('./build-5e469530.cjs.js'); }).then((m) => m.default)));
|
|
238
|
+
program.command("backend:bundle").description("Bundle the backend into a deployment archive").option("--build-dependencies", "Build all local package dependencies before bundling the backend").action(lazy(() => Promise.resolve().then(function () { return require('./bundle-2cb505f3.cjs.js'); }).then((m) => m.default)));
|
|
239
|
+
program.command("backend:dev").description("Start local development server with HMR for the backend").option("--check", "Enable type checking and linting").option("--inspect", "Enable debugger").option("--inspect-brk", "Enable debugger with await to attach debugger").option(...configOption).action(lazy(() => Promise.resolve().then(function () { return require('./dev-558ef0c6.cjs.js'); }).then((m) => m.default)));
|
|
240
|
+
program.command("create").storeOptionsAsProperties(false).description("Open up an interactive guide to creating new things in your app").option("--select <name>", "Select the thing you want to be creating upfront").option("--option <name>=<value>", "Pre-fill options for the creation process", (opt, arr) => [...arr, opt], []).option("--scope <scope>", "The scope to use for new packages").option("--npm-registry <URL>", "The package registry to use for new packages").option("--no-private", "Do not mark new packages as private").action(lazy(() => Promise.resolve().then(function () { return require('./create-8dc87021.cjs.js'); }).then((m) => m.default)));
|
|
241
|
+
program.command("create-plugin").option("--backend", "Create plugin with the backend dependencies as default").description("Creates a new plugin in the current repository").option("--scope <scope>", "npm scope").option("--npm-registry <URL>", "npm registry URL").option("--no-private", "Public npm package").action(lazy(() => Promise.resolve().then(function () { return require('./createPlugin-f480902b.cjs.js'); }).then((m) => m.default)));
|
|
242
|
+
program.command("remove-plugin").description("[DEPRECATED] - Removes plugin in the current repository").action(lazy(() => Promise.resolve().then(function () { return require('./removePlugin-350b9293.cjs.js'); }).then((m) => m.default)));
|
|
243
|
+
program.command("plugin:build").description("Build a plugin").option("--minify", "Minify the generated code").option("--experimental-type-build", "Enable experimental type build").action(lazy(() => Promise.resolve().then(function () { return require('./build-41b160e1.cjs.js'); }).then((m) => m.default)));
|
|
244
|
+
program.command("plugin:serve").description("Serves the dev/ folder of a plugin").option("--check", "Enable type checking and linting").option(...configOption).action(lazy(() => Promise.resolve().then(function () { return require('./serve-d962519a.cjs.js'); }).then((m) => m.default)));
|
|
245
|
+
program.command("plugin:diff").option("--check", "Fail if changes are required").option("--yes", "Apply all changes").description("Diff an existing plugin with the creation template").action(lazy(() => Promise.resolve().then(function () { return require('./diff-7382e071.cjs.js'); }).then((m) => m.default)));
|
|
246
|
+
program.command("build").description("Build a package for publishing").option("--outputs <formats>", "List of formats to output [types,cjs,esm]").option("--minify", "Minify the generated code").option("--experimental-type-build", "Enable experimental type build").action(lazy(() => Promise.resolve().then(function () { return require('./build-6a564e18.cjs.js'); }).then((m) => m.default)));
|
|
247
|
+
program.command("lint").option("--format <format>", "Lint report output format", "eslint-formatter-friendly").option("--fix", "Attempt to automatically fix violations").description("Lint a package").action(lazy(() => Promise.resolve().then(function () { return require('./lint-5aa2e47f.cjs.js'); }).then((m) => m.default)));
|
|
248
|
+
program.command("test").allowUnknownOption(true).helpOption(", --backstage-cli-help").description("Run tests, forwarding args to Jest, defaulting to watch mode").action(lazy(() => Promise.resolve().then(function () { return require('./testCommand-0e57c1d2.cjs.js'); }).then((m) => m.default)));
|
|
249
|
+
program.command("config:docs").option("--package <name>", "Only include the schema that applies to the given package").description("Browse the configuration reference documentation").action(lazy(() => Promise.resolve().then(function () { return require('./docs-a44be9cd.cjs.js'); }).then((m) => m.default)));
|
|
250
|
+
program.command("config:print").option("--package <name>", "Only load config schema that applies to the given package").option("--lax", "Do not require environment variables to be set").option("--frontend", "Print only the frontend configuration").option("--with-secrets", "Include secrets in the printed configuration").option("--format <format>", "Format to print the configuration in, either json or yaml [yaml]").option(...configOption).description("Print the app configuration for the current package").action(lazy(() => Promise.resolve().then(function () { return require('./print-207cc148.cjs.js'); }).then((m) => m.default)));
|
|
251
|
+
program.command("config:check").option("--package <name>", "Only load config schema that applies to the given package").option("--lax", "Do not require environment variables to be set").option("--frontend", "Only validate the frontend configuration").option("--deprecated", "Output deprecated configuration settings").option(...configOption).description("Validate that the given configuration loads and matches schema").action(lazy(() => Promise.resolve().then(function () { return require('./validate-878f8022.cjs.js'); }).then((m) => m.default)));
|
|
252
|
+
program.command("config:schema").option("--package <name>", "Only output config schema that applies to the given package").option("--format <format>", "Format to print the schema in, either json or yaml [yaml]").description("Print configuration schema").action(lazy(() => Promise.resolve().then(function () { return require('./schema-aa853b70.cjs.js'); }).then((m) => m.default)));
|
|
253
|
+
program.command("versions:bump").option("--pattern <glob>", "Override glob for matching packages to upgrade").description("Bump Backstage packages to the latest versions").action(lazy(() => Promise.resolve().then(function () { return require('./bump-0d4c7e07.cjs.js'); }).then((m) => m.default)));
|
|
254
|
+
program.command("versions:check").option("--fix", "Fix any auto-fixable versioning problems").description("Check Backstage package versioning").action(lazy(() => Promise.resolve().then(function () { return require('./lint-25eb1889.cjs.js'); }).then((m) => m.default)));
|
|
255
|
+
program.command("prepack").description("Prepares a package for packaging before publishing").action(lazy(() => Promise.resolve().then(function () { return require('./pack-a5e15cdb.cjs.js'); }).then((m) => m.pre)));
|
|
256
|
+
program.command("postpack").description("Restores the changes made by the prepack command").action(lazy(() => Promise.resolve().then(function () { return require('./pack-a5e15cdb.cjs.js'); }).then((m) => m.post)));
|
|
257
|
+
program.command("clean").description("Delete cache directories").action(lazy(() => Promise.resolve().then(function () { return require('./clean-265d3ed5.cjs.js'); }).then((m) => m.default)));
|
|
258
|
+
program.command("build-workspace <workspace-dir> ...<packages>").description("Builds a temporary dist workspace from the provided packages").action(lazy(() => Promise.resolve().then(function () { return require('./buildWorkspace-b198351d.cjs.js'); }).then((m) => m.default)));
|
|
259
|
+
program.command("create-github-app <github-org>").description("Create new GitHub App in your organization.").action(lazy(() => Promise.resolve().then(function () { return require('./index-63774350.cjs.js'); }).then((m) => m.default)));
|
|
260
|
+
program.command("info").description("Show helpful information for debugging and reporting bugs").action(lazy(() => Promise.resolve().then(function () { return require('./info-643074cc.cjs.js'); }).then((m) => m.default)));
|
|
261
|
+
program.command("install [plugin-id]", { hidden: true }).option("--from <packageJsonFilePath>", "Install from a local package.json containing the installation recipe").description("Install a Backstage plugin [EXPERIMENTAL]").action(lazy(() => Promise.resolve().then(function () { return require('./install-c8b107f7.cjs.js'); }).then((m) => m.default)));
|
|
263
262
|
}
|
|
264
263
|
function lazy(getActionFunc) {
|
|
265
264
|
return async (...args) => {
|
|
@@ -303,4 +302,4 @@ exports.devDependencies = devDependencies;
|
|
|
303
302
|
exports.paths = paths;
|
|
304
303
|
exports.version = version;
|
|
305
304
|
exports.version$1 = version$8;
|
|
306
|
-
//# sourceMappingURL=index-
|
|
305
|
+
//# sourceMappingURL=index-92454bcd.cjs.js.map
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
-
var index = require('./index-
|
|
3
|
+
var index = require('./index-92454bcd.cjs.js');
|
|
4
4
|
var os = require('os');
|
|
5
|
-
var run = require('./run-
|
|
5
|
+
var run = require('./run-ad69ea39.cjs.js');
|
|
6
6
|
var Lockfile = require('./Lockfile-35661afa.cjs.js');
|
|
7
7
|
require('minimatch');
|
|
8
8
|
require('@manypkg/get-packages');
|
|
@@ -43,4 +43,4 @@ var info = async () => {
|
|
|
43
43
|
};
|
|
44
44
|
|
|
45
45
|
exports["default"] = info;
|
|
46
|
-
//# sourceMappingURL=info-
|
|
46
|
+
//# sourceMappingURL=info-643074cc.cjs.js.map
|