@backstage/cli 0.32.0-next.2 → 0.32.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/config/eslint-factory.js +2 -2
- package/dist/commands/index.cjs.js +21 -51
- package/dist/lib/removed.cjs.js +13 -0
- package/dist/{commands → modules/create-github-app/commands}/create-github-app/index.cjs.js +1 -1
- package/dist/modules/create-github-app/index.cjs.js +15 -0
- package/dist/{commands/new → modules/new/commands}/new.cjs.js +1 -1
- package/dist/modules/new/index.cjs.js +35 -0
- package/dist/{lib/new → modules/new/lib}/execution/PortableTemplater.cjs.js +5 -5
- package/dist/{lib/new → modules/new/lib}/execution/executePortableTemplate.cjs.js +2 -2
- package/dist/{lib/new → modules/new/lib}/execution/installNewPackage.cjs.js +2 -2
- package/dist/{lib/new → modules/new/lib}/execution/writeTemplateContents.cjs.js +1 -1
- package/dist/{lib/new → modules/new/lib}/preparation/collectPortableTemplateInput.cjs.js +2 -2
- package/dist/{lib/new → modules/new/lib}/preparation/loadPortableTemplate.cjs.js +1 -1
- package/dist/{lib/new → modules/new/lib}/preparation/loadPortableTemplateConfig.cjs.js +1 -1
- package/dist/packages/backend-defaults/package.json.cjs.js +1 -1
- package/dist/packages/backend-plugin-api/package.json.cjs.js +1 -1
- package/dist/packages/backend-test-utils/package.json.cjs.js +1 -1
- package/dist/packages/cli/package.json.cjs.js +1 -1
- package/dist/packages/core-app-api/package.json.cjs.js +1 -1
- package/dist/packages/core-components/package.json.cjs.js +1 -1
- package/dist/packages/core-plugin-api/package.json.cjs.js +1 -1
- package/dist/packages/dev-utils/package.json.cjs.js +1 -1
- package/dist/packages/test-utils/package.json.cjs.js +1 -1
- package/dist/packages/theme/package.json.cjs.js +1 -1
- package/dist/plugins/auth-backend/package.json.cjs.js +1 -1
- package/dist/plugins/auth-backend-module-guest-provider/package.json.cjs.js +1 -1
- package/dist/plugins/catalog-node/package.json.cjs.js +1 -1
- package/dist/plugins/scaffolder-node/package.json.cjs.js +1 -1
- package/dist/plugins/scaffolder-node-test-utils/package.json.cjs.js +1 -1
- package/package.json +27 -27
- /package/dist/{commands → modules/create-github-app/commands}/create-github-app/GithubCreateAppServer.cjs.js +0 -0
- /package/dist/{lib/new → modules/new/lib}/createNewPackage.cjs.js +0 -0
- /package/dist/{lib/new → modules/new/lib}/defaultTemplates.cjs.js +0 -0
- /package/dist/{lib/new → modules/new/lib}/preparation/resolvePackageParams.cjs.js +0 -0
- /package/dist/{lib/new → modules/new/lib}/preparation/selectTemplateInteractively.cjs.js +0 -0
- /package/dist/{lib/new → modules/new/lib}/types.cjs.js +0 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,67 @@
|
|
|
1
1
|
# @backstage/cli
|
|
2
2
|
|
|
3
|
+
## 0.32.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- a47fd39: Removes default React imports from template files, aligning with the requirements for the upcoming React 19 migration. Introduces a new ESLint rule to disallow `import React from 'react'` and `import * as React from 'react'`.
|
|
8
|
+
|
|
9
|
+
<https://legacy.reactjs.org/blog/2020/09/22/introducing-the-new-jsx-transform.html>
|
|
10
|
+
|
|
11
|
+
- 65b584c: Internal update to move the `new` and `create-github-app` to their own module.
|
|
12
|
+
- c7254ae: Internal update to move the `clean`, `pre/postpack` and `fix` commands into their own separate module.
|
|
13
|
+
|
|
14
|
+
### Patch Changes
|
|
15
|
+
|
|
16
|
+
- 4ea76f7: Bump @module-federation/enhanced ^0.9.0 to fix GHSA-593f-38f6-jp5m
|
|
17
|
+
- 87a5cb4: Fixed an issue causing the `repo lint` command to fail when the `--max-warnings` option was used.
|
|
18
|
+
- 6969f79: Avoid trailing `/*` when automatically adding imports for package with multiple entry points.
|
|
19
|
+
- 98b7131: Update the `to do` plugin template to stop using the deprecated catalog alpha service reference.
|
|
20
|
+
If you start seeing the `should create TODO item with catalog information` test failing, you have two options to fix this:
|
|
21
|
+
Update the test to mock the legacy alpha catalog service, or migrate the `TODO` plugin backend to use the new catalog service reference.
|
|
22
|
+
We recommend the second option, see [this](https://github.com/backstage/backstage/pull/29450/files/267115d0436009443ca68ac84e7dcc646c9c938d#diff-47e01aeb12dd55fab9e697f810be21a8d08d39c37df1b078f6d0894f9bad5a1b) pull request for an example of how to do the migration.
|
|
23
|
+
- d5c4fed: make certificate strings optional for Dev environments
|
|
24
|
+
- d83f3f4: Resolved a problem where the `start` command did not correctly handle multiple `--require` flags, ensuring all specified modules are now properly loaded.
|
|
25
|
+
- d2091c6: Added a new `repo start` command to replace the existing pattern of using `yarn dev` scripts. The `repo start` command runs the app and/or backend package in the repo by default, but will also fall back to running other individual frontend or backend packages or even plugin dev entry points if the can be uniquely selected.
|
|
26
|
+
|
|
27
|
+
The goal of this change is to reduce the number of different necessary scripts and align on `yarn start` being the only command needed for local development, similar to how `repo test` handles testing in the repo. It also opens up for more powerful options, like the `--plugin <pluginId>` flag that runs the dev entry point of the selected plugin.
|
|
28
|
+
|
|
29
|
+
The new script is installed as follows, replacing the existing `yarn start` script:
|
|
30
|
+
|
|
31
|
+
```json
|
|
32
|
+
{
|
|
33
|
+
"scripts": {
|
|
34
|
+
"start": "backstage-cli repo start"
|
|
35
|
+
}
|
|
36
|
+
}
|
|
37
|
+
```
|
|
38
|
+
|
|
39
|
+
In order to help users migrate in existing projects, it is recommended to add the following scripts to the root `package.json`:
|
|
40
|
+
|
|
41
|
+
```json
|
|
42
|
+
{
|
|
43
|
+
"scripts": {
|
|
44
|
+
"dev": "echo \"Use 'yarn start' instead\"",
|
|
45
|
+
"start-backend": "echo \"Use 'yarn start backend' instead\""
|
|
46
|
+
}
|
|
47
|
+
}
|
|
48
|
+
```
|
|
49
|
+
|
|
50
|
+
For more information, run `yarn start --help` once the new command is installed.
|
|
51
|
+
|
|
52
|
+
- 918c883: Included a reference to the JSX transform guide in the warning about using the default React import.
|
|
53
|
+
- Updated dependencies
|
|
54
|
+
- @backstage/integration@1.16.3
|
|
55
|
+
- @backstage/catalog-model@1.7.3
|
|
56
|
+
- @backstage/cli-common@0.1.15
|
|
57
|
+
- @backstage/cli-node@0.2.13
|
|
58
|
+
- @backstage/config@1.3.2
|
|
59
|
+
- @backstage/config-loader@1.10.0
|
|
60
|
+
- @backstage/errors@1.2.7
|
|
61
|
+
- @backstage/eslint-plugin@0.1.10
|
|
62
|
+
- @backstage/release-manifests@0.0.12
|
|
63
|
+
- @backstage/types@1.2.1
|
|
64
|
+
|
|
3
65
|
## 0.32.0-next.2
|
|
4
66
|
|
|
5
67
|
### Minor Changes
|
package/config/eslint-factory.js
CHANGED
|
@@ -249,13 +249,13 @@ function createConfigForRole(dir, role, extraConfig = {}) {
|
|
|
249
249
|
'warn',
|
|
250
250
|
{
|
|
251
251
|
message:
|
|
252
|
-
'React default imports are deprecated. Follow the
|
|
252
|
+
'React default imports are deprecated. Follow the https://backstage.io/docs/tutorials/jsx-transform-migration migration guide for details.',
|
|
253
253
|
selector:
|
|
254
254
|
"ImportDeclaration[source.value='react'][specifiers.0.type='ImportDefaultSpecifier']",
|
|
255
255
|
},
|
|
256
256
|
{
|
|
257
257
|
message:
|
|
258
|
-
'React default imports are deprecated. Follow the
|
|
258
|
+
'React default imports are deprecated. Follow the https://backstage.io/docs/tutorials/jsx-transform-migration migration guide for details. If you need a global type that collides with a React named export (such as `MouseEvent`), try using `globalThis.MouseHandler`.',
|
|
259
259
|
selector:
|
|
260
260
|
"ImportDeclaration[source.value='react'] :matches(ImportDefaultSpecifier, ImportNamespaceSpecifier)",
|
|
261
261
|
},
|
|
@@ -1,82 +1,52 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
-
var lazy = require('../lib/lazy.cjs.js');
|
|
4
3
|
var index = require('../modules/config/index.cjs.js');
|
|
5
4
|
var index$2 = require('../modules/build/index.cjs.js');
|
|
6
|
-
var index$
|
|
5
|
+
var index$6 = require('../modules/start/index.cjs.js');
|
|
7
6
|
var index$3 = require('../modules/info/index.cjs.js');
|
|
8
7
|
var index$1 = require('../modules/migrate/index.cjs.js');
|
|
9
|
-
var index$
|
|
10
|
-
var index$
|
|
11
|
-
var index$
|
|
8
|
+
var index$7 = require('../modules/test/index.cjs.js');
|
|
9
|
+
var index$8 = require('../modules/lint/index.cjs.js');
|
|
10
|
+
var index$9 = require('../modules/maintenance/index.cjs.js');
|
|
11
|
+
var removed = require('../lib/removed.cjs.js');
|
|
12
|
+
var index$4 = require('../modules/new/index.cjs.js');
|
|
13
|
+
var index$5 = require('../modules/create-github-app/index.cjs.js');
|
|
12
14
|
|
|
13
15
|
function registerRepoCommand(program) {
|
|
14
16
|
const command = program.command("repo [command]").description("Command that run across an entire Backstage project");
|
|
15
|
-
index$4.registerRepoCommands(command);
|
|
16
|
-
index$2.registerRepoCommands(command);
|
|
17
|
-
index$5.registerRepoCommands(command);
|
|
18
17
|
index$6.registerRepoCommands(command);
|
|
18
|
+
index$2.registerRepoCommands(command);
|
|
19
19
|
index$7.registerRepoCommands(command);
|
|
20
|
+
index$8.registerRepoCommands(command);
|
|
21
|
+
index$9.registerRepoCommands(command);
|
|
20
22
|
}
|
|
21
23
|
function registerScriptCommand(program) {
|
|
22
24
|
const command = program.command("package [command]").description("Lifecycle scripts for individual packages");
|
|
23
|
-
index$
|
|
25
|
+
index$6.registerPackageCommands(command);
|
|
24
26
|
index$2.registerPackageCommands(command);
|
|
25
|
-
index$5.registerPackageCommands(command);
|
|
26
27
|
index$7.registerPackageCommands(command);
|
|
27
|
-
index$
|
|
28
|
+
index$9.registerPackageCommands(command);
|
|
29
|
+
index$8.registerPackageCommands(command);
|
|
28
30
|
}
|
|
29
31
|
function registerCommands(program) {
|
|
30
|
-
program.command("new").storeOptionsAsProperties(false).description(
|
|
31
|
-
"Open up an interactive guide to creating new things in your app"
|
|
32
|
-
).option(
|
|
33
|
-
"--select <name>",
|
|
34
|
-
"Select the thing you want to be creating upfront"
|
|
35
|
-
).option(
|
|
36
|
-
"--option <name>=<value>",
|
|
37
|
-
"Pre-fill options for the creation process",
|
|
38
|
-
(opt, arr) => [...arr, opt],
|
|
39
|
-
[]
|
|
40
|
-
).option(
|
|
41
|
-
"--skip-install",
|
|
42
|
-
`Skips running 'yarn install' and 'yarn lint --fix'`
|
|
43
|
-
).option("--scope <scope>", "The scope to use for new packages").option(
|
|
44
|
-
"--npm-registry <URL>",
|
|
45
|
-
"The package registry to use for new packages"
|
|
46
|
-
).option(
|
|
47
|
-
"--baseVersion <version>",
|
|
48
|
-
"The version to use for any new packages (default: 0.1.0)"
|
|
49
|
-
).option(
|
|
50
|
-
"--license <license>",
|
|
51
|
-
"The license to use for any new packages (default: Apache-2.0)"
|
|
52
|
-
).option("--no-private", "Do not mark new packages as private").action(lazy.lazy(() => import('./new/new.cjs.js'), "default"));
|
|
53
32
|
index.registerCommands(program);
|
|
54
33
|
registerRepoCommand(program);
|
|
55
34
|
registerScriptCommand(program);
|
|
56
35
|
index$1.registerCommands(program);
|
|
57
36
|
index$2.registerCommands(program);
|
|
58
37
|
index$3.registerCommands(program);
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
program.command("
|
|
62
|
-
program.command("plugin:diff").allowUnknownOption(true).action(removed("use 'backstage-cli fix' instead"));
|
|
38
|
+
index$4.registerCommands(program);
|
|
39
|
+
index$5.registerCommands(program);
|
|
40
|
+
program.command("plugin:diff").allowUnknownOption(true).action(removed.removed("use 'backstage-cli fix' instead"));
|
|
63
41
|
program.command("test").allowUnknownOption(true).action(
|
|
64
|
-
removed(
|
|
42
|
+
removed.removed(
|
|
65
43
|
"use 'backstage-cli repo test' or 'backstage-cli package test' instead"
|
|
66
44
|
)
|
|
67
45
|
);
|
|
68
|
-
program.command("clean").allowUnknownOption(true).action(removed("use 'backstage-cli package clean' instead"));
|
|
69
|
-
program.command("versions:check").allowUnknownOption(true).action(removed("use 'yarn dedupe' or 'yarn-deduplicate' instead"));
|
|
70
|
-
program.command("install").allowUnknownOption(true).action(removed());
|
|
71
|
-
program.command("onboard").allowUnknownOption(true).action(removed());
|
|
72
|
-
}
|
|
73
|
-
function removed(message) {
|
|
74
|
-
return () => {
|
|
75
|
-
console.error(
|
|
76
|
-
message ? `This command has been removed, ${message}` : "This command has been removed"
|
|
77
|
-
);
|
|
78
|
-
process.exit(1);
|
|
79
|
-
};
|
|
46
|
+
program.command("clean").allowUnknownOption(true).action(removed.removed("use 'backstage-cli package clean' instead"));
|
|
47
|
+
program.command("versions:check").allowUnknownOption(true).action(removed.removed("use 'yarn dedupe' or 'yarn-deduplicate' instead"));
|
|
48
|
+
program.command("install").allowUnknownOption(true).action(removed.removed());
|
|
49
|
+
program.command("onboard").allowUnknownOption(true).action(removed.removed());
|
|
80
50
|
}
|
|
81
51
|
|
|
82
52
|
exports.registerCommands = registerCommands;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
function removed(message) {
|
|
4
|
+
return () => {
|
|
5
|
+
console.error(
|
|
6
|
+
message ? `This command has been removed, ${message}` : "This command has been removed"
|
|
7
|
+
);
|
|
8
|
+
process.exit(1);
|
|
9
|
+
};
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
exports.removed = removed;
|
|
13
|
+
//# sourceMappingURL=removed.cjs.js.map
|
|
@@ -6,7 +6,7 @@ var fs = require('fs-extra');
|
|
|
6
6
|
var chalk = require('chalk');
|
|
7
7
|
var yaml = require('yaml');
|
|
8
8
|
var inquirer = require('inquirer');
|
|
9
|
-
var paths = require('
|
|
9
|
+
var paths = require('../../../../lib/paths.cjs.js');
|
|
10
10
|
var GithubCreateAppServer = require('./GithubCreateAppServer.cjs.js');
|
|
11
11
|
var openBrowser = require('react-dev-utils/openBrowser');
|
|
12
12
|
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
var lazy = require('../../lib/lazy.cjs.js');
|
|
4
|
+
|
|
5
|
+
function registerCommands(program) {
|
|
6
|
+
program.command("create-github-app <github-org>").description("Create new GitHub App in your organization.").action(
|
|
7
|
+
lazy.lazy(
|
|
8
|
+
() => import('./commands/create-github-app/index.cjs.js'),
|
|
9
|
+
"default"
|
|
10
|
+
)
|
|
11
|
+
);
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
exports.registerCommands = registerCommands;
|
|
15
|
+
//# sourceMappingURL=index.cjs.js.map
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
var lazy = require('../../lib/lazy.cjs.js');
|
|
4
|
+
var removed = require('../../lib/removed.cjs.js');
|
|
5
|
+
|
|
6
|
+
function registerCommands(program) {
|
|
7
|
+
program.command("new").storeOptionsAsProperties(false).description(
|
|
8
|
+
"Open up an interactive guide to creating new things in your app"
|
|
9
|
+
).option(
|
|
10
|
+
"--select <name>",
|
|
11
|
+
"Select the thing you want to be creating upfront"
|
|
12
|
+
).option(
|
|
13
|
+
"--option <name>=<value>",
|
|
14
|
+
"Pre-fill options for the creation process",
|
|
15
|
+
(opt, arr) => [...arr, opt],
|
|
16
|
+
[]
|
|
17
|
+
).option(
|
|
18
|
+
"--skip-install",
|
|
19
|
+
`Skips running 'yarn install' and 'yarn lint --fix'`
|
|
20
|
+
).option("--scope <scope>", "The scope to use for new packages").option(
|
|
21
|
+
"--npm-registry <URL>",
|
|
22
|
+
"The package registry to use for new packages"
|
|
23
|
+
).option(
|
|
24
|
+
"--baseVersion <version>",
|
|
25
|
+
"The version to use for any new packages (default: 0.1.0)"
|
|
26
|
+
).option(
|
|
27
|
+
"--license <license>",
|
|
28
|
+
"The license to use for any new packages (default: Apache-2.0)"
|
|
29
|
+
).option("--no-private", "Do not mark new packages as private").action(lazy.lazy(() => import('./commands/new.cjs.js'), "default"));
|
|
30
|
+
program.command("create").allowUnknownOption(true).action(removed.removed("use 'backstage-cli new' instead"));
|
|
31
|
+
program.command("create-plugin").allowUnknownOption(true).action(removed.removed("use 'backstage-cli new' instead"));
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
exports.registerCommands = registerCommands;
|
|
35
|
+
//# sourceMappingURL=index.cjs.js.map
|
|
@@ -9,14 +9,14 @@ var startCase = require('lodash/startCase');
|
|
|
9
9
|
var upperCase = require('lodash/upperCase');
|
|
10
10
|
var upperFirst = require('lodash/upperFirst');
|
|
11
11
|
var lowerFirst = require('lodash/lowerFirst');
|
|
12
|
-
var Lockfile = require('
|
|
12
|
+
var Lockfile = require('../../../../lib/versioning/Lockfile.cjs.js');
|
|
13
13
|
require('minimatch');
|
|
14
14
|
require('@manypkg/get-packages');
|
|
15
15
|
require('chalk');
|
|
16
|
-
require('
|
|
17
|
-
require('
|
|
18
|
-
var paths = require('
|
|
19
|
-
var version = require('
|
|
16
|
+
require('../../../../lib/yarn.cjs.js');
|
|
17
|
+
require('../../../../lib/run.cjs.js');
|
|
18
|
+
var paths = require('../../../../lib/paths.cjs.js');
|
|
19
|
+
var version = require('../../../../lib/version.cjs.js');
|
|
20
20
|
|
|
21
21
|
function _interopDefaultCompat (e) { return e && typeof e === 'object' && 'default' in e ? e : { default: e }; }
|
|
22
22
|
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
3
|
var errors = require('@backstage/errors');
|
|
4
|
-
var codeowners = require('
|
|
5
|
-
var tasks = require('
|
|
4
|
+
var codeowners = require('../../../../lib/codeowners/codeowners.cjs.js');
|
|
5
|
+
var tasks = require('../../../../lib/tasks.cjs.js');
|
|
6
6
|
var installNewPackage = require('./installNewPackage.cjs.js');
|
|
7
7
|
var writeTemplateContents = require('./writeTemplateContents.cjs.js');
|
|
8
8
|
|
|
@@ -3,8 +3,8 @@
|
|
|
3
3
|
var fs = require('fs-extra');
|
|
4
4
|
var upperFirst = require('lodash/upperFirst');
|
|
5
5
|
var camelCase = require('lodash/camelCase');
|
|
6
|
-
var paths = require('
|
|
7
|
-
var tasks = require('
|
|
6
|
+
var paths = require('../../../../lib/paths.cjs.js');
|
|
7
|
+
var tasks = require('../../../../lib/tasks.cjs.js');
|
|
8
8
|
|
|
9
9
|
function _interopDefaultCompat (e) { return e && typeof e === 'object' && 'default' in e ? e : { default: e }; }
|
|
10
10
|
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
var fs = require('fs-extra');
|
|
4
4
|
var path = require('path');
|
|
5
|
-
var paths = require('
|
|
5
|
+
var paths = require('../../../../lib/paths.cjs.js');
|
|
6
6
|
var errors = require('@backstage/errors');
|
|
7
7
|
var cliNode = require('@backstage/cli-node');
|
|
8
8
|
var PortableTemplater = require('./PortableTemplater.cjs.js');
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
3
|
var inquirer = require('inquirer');
|
|
4
|
-
var codeowners = require('
|
|
5
|
-
var paths = require('
|
|
4
|
+
var codeowners = require('../../../../lib/codeowners/codeowners.cjs.js');
|
|
5
|
+
var paths = require('../../../../lib/paths.cjs.js');
|
|
6
6
|
var resolvePackageParams = require('./resolvePackageParams.cjs.js');
|
|
7
7
|
|
|
8
8
|
function _interopDefaultCompat (e) { return e && typeof e === 'object' && 'default' in e ? e : { default: e }; }
|
|
@@ -6,7 +6,7 @@ var recursiveReaddir = require('recursive-readdir');
|
|
|
6
6
|
var path = require('path');
|
|
7
7
|
var node_path = require('node:path');
|
|
8
8
|
var yaml = require('yaml');
|
|
9
|
-
var paths = require('
|
|
9
|
+
var paths = require('../../../../lib/paths.cjs.js');
|
|
10
10
|
var types = require('../types.cjs.js');
|
|
11
11
|
var errors = require('@backstage/errors');
|
|
12
12
|
var zodValidationError = require('zod-validation-error');
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
var fs = require('fs-extra');
|
|
4
4
|
var node_path = require('node:path');
|
|
5
|
-
var paths = require('
|
|
5
|
+
var paths = require('../../../../lib/paths.cjs.js');
|
|
6
6
|
var defaultTemplates = require('../defaultTemplates.cjs.js');
|
|
7
7
|
var types = require('../types.cjs.js');
|
|
8
8
|
var yaml = require('yaml');
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/cli",
|
|
3
|
-
"version": "0.32.0
|
|
3
|
+
"version": "0.32.0",
|
|
4
4
|
"description": "CLI for developing Backstage plugins and apps",
|
|
5
5
|
"backstage": {
|
|
6
6
|
"role": "cli"
|
|
@@ -48,16 +48,16 @@
|
|
|
48
48
|
]
|
|
49
49
|
},
|
|
50
50
|
"dependencies": {
|
|
51
|
-
"@backstage/catalog-model": "1.7.3",
|
|
52
|
-
"@backstage/cli-common": "0.1.15",
|
|
53
|
-
"@backstage/cli-node": "0.2.13",
|
|
54
|
-
"@backstage/config": "1.3.2",
|
|
55
|
-
"@backstage/config-loader": "1.10.0",
|
|
56
|
-
"@backstage/errors": "1.2.7",
|
|
57
|
-
"@backstage/eslint-plugin": "0.1.10",
|
|
58
|
-
"@backstage/integration": "1.16.3
|
|
59
|
-
"@backstage/release-manifests": "0.0.12",
|
|
60
|
-
"@backstage/types": "1.2.1",
|
|
51
|
+
"@backstage/catalog-model": "^1.7.3",
|
|
52
|
+
"@backstage/cli-common": "^0.1.15",
|
|
53
|
+
"@backstage/cli-node": "^0.2.13",
|
|
54
|
+
"@backstage/config": "^1.3.2",
|
|
55
|
+
"@backstage/config-loader": "^1.10.0",
|
|
56
|
+
"@backstage/errors": "^1.2.7",
|
|
57
|
+
"@backstage/eslint-plugin": "^0.1.10",
|
|
58
|
+
"@backstage/integration": "^1.16.3",
|
|
59
|
+
"@backstage/release-manifests": "^0.0.12",
|
|
60
|
+
"@backstage/types": "^1.2.1",
|
|
61
61
|
"@manypkg/get-packages": "^1.1.3",
|
|
62
62
|
"@module-federation/enhanced": "^0.9.0",
|
|
63
63
|
"@octokit/graphql": "^5.0.0",
|
|
@@ -164,22 +164,22 @@
|
|
|
164
164
|
"zod-validation-error": "^3.4.0"
|
|
165
165
|
},
|
|
166
166
|
"devDependencies": {
|
|
167
|
-
"@backstage/backend-plugin-api": "1.
|
|
168
|
-
"@backstage/backend-test-utils": "1.
|
|
169
|
-
"@backstage/catalog-client": "1.9.1",
|
|
170
|
-
"@backstage/config": "1.3.2",
|
|
171
|
-
"@backstage/core-app-api": "1.16.1
|
|
172
|
-
"@backstage/core-components": "0.17.1
|
|
173
|
-
"@backstage/core-plugin-api": "1.10.6
|
|
174
|
-
"@backstage/dev-utils": "1.1.9
|
|
175
|
-
"@backstage/errors": "1.2.7",
|
|
176
|
-
"@backstage/plugin-auth-backend": "0.24.5
|
|
177
|
-
"@backstage/plugin-auth-backend-module-guest-provider": "0.2.
|
|
178
|
-
"@backstage/plugin-catalog-node": "1.16.3
|
|
179
|
-
"@backstage/plugin-scaffolder-node": "0.8.1
|
|
180
|
-
"@backstage/plugin-scaffolder-node-test-utils": "0.2.1
|
|
181
|
-
"@backstage/test-utils": "1.7.7
|
|
182
|
-
"@backstage/theme": "0.6.5
|
|
167
|
+
"@backstage/backend-plugin-api": "^1.3.0",
|
|
168
|
+
"@backstage/backend-test-utils": "^1.4.0",
|
|
169
|
+
"@backstage/catalog-client": "^1.9.1",
|
|
170
|
+
"@backstage/config": "^1.3.2",
|
|
171
|
+
"@backstage/core-app-api": "^1.16.1",
|
|
172
|
+
"@backstage/core-components": "^0.17.1",
|
|
173
|
+
"@backstage/core-plugin-api": "^1.10.6",
|
|
174
|
+
"@backstage/dev-utils": "^1.1.9",
|
|
175
|
+
"@backstage/errors": "^1.2.7",
|
|
176
|
+
"@backstage/plugin-auth-backend": "^0.24.5",
|
|
177
|
+
"@backstage/plugin-auth-backend-module-guest-provider": "^0.2.7",
|
|
178
|
+
"@backstage/plugin-catalog-node": "^1.16.3",
|
|
179
|
+
"@backstage/plugin-scaffolder-node": "^0.8.1",
|
|
180
|
+
"@backstage/plugin-scaffolder-node-test-utils": "^0.2.1",
|
|
181
|
+
"@backstage/test-utils": "^1.7.7",
|
|
182
|
+
"@backstage/theme": "^0.6.5",
|
|
183
183
|
"@rspack/core": "^1.0.10",
|
|
184
184
|
"@rspack/dev-server": "^1.0.9",
|
|
185
185
|
"@rspack/plugin-react-refresh": "^1.0.0",
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|