@backstage/cli 0.29.1 → 0.29.3-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 +11 -5
- package/bin/backstage-cli-alpha +19 -0
- package/config/prettier.json +5 -0
- package/dist/commands/build/buildFrontend.cjs.js +1 -1
- package/dist/commands/index.cjs.js +28 -72
- package/dist/commands/pack.cjs.js +1 -0
- package/dist/commands/versions/bump.cjs.js +14 -0
- package/dist/lib/bundler/config.cjs.js +4 -4
- package/dist/lib/bundler/server.cjs.js +1 -1
- package/dist/lib/lazy.cjs.js +20 -0
- package/dist/lib/version.cjs.js +36 -39
- package/dist/{commands/config → modules/config/commands}/docs.cjs.js +1 -1
- package/dist/{commands/config → modules/config/commands}/print.cjs.js +1 -1
- package/dist/{commands/config → modules/config/commands}/schema.cjs.js +1 -1
- package/dist/{commands/config → modules/config/commands}/validate.cjs.js +1 -1
- package/dist/modules/config/index.cjs.js +43 -0
- package/dist/{lib → modules/config/lib}/config.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/catalog-client/package.json.cjs.js +1 -1
- package/dist/packages/cli/package.json.cjs.js +2 -2
- 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/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 +28 -28
package/CHANGELOG.md
CHANGED
|
@@ -1,20 +1,26 @@
|
|
|
1
1
|
# @backstage/cli
|
|
2
2
|
|
|
3
|
-
## 0.29.
|
|
3
|
+
## 0.29.3-next.0
|
|
4
4
|
|
|
5
5
|
### Patch Changes
|
|
6
6
|
|
|
7
|
-
-
|
|
7
|
+
- 2b6c1ea: If the Backstage yarn plugin is installed, it will now be automatically updated as part of `versions:bump`.
|
|
8
|
+
- 7dcff85: Remove special-casing for `@types` packages when generating dependency entries
|
|
9
|
+
during templating
|
|
10
|
+
- 0aff006: Bumped the version range for `html-webpack-plugin` to fix the `htmlPluginExports.getCompilationHooks is not a function` error when using experimental Rspack.
|
|
11
|
+
- 583f3d4: Added `@backstage/cli/config/prettier` as a replacement for `@spotify/prettier-config`, but with the same configuration.
|
|
12
|
+
- 5f04976: Update `rollup` to avoid issues with build output when running `backstage-cli package build`.
|
|
13
|
+
- 5f04976: Fixed a bug that caused missing code in published packages.
|
|
8
14
|
- Updated dependencies
|
|
15
|
+
- @backstage/integration@1.16.0-next.0
|
|
16
|
+
- @backstage/release-manifests@0.0.12-next.0
|
|
17
|
+
- @backstage/cli-node@0.2.11-next.0
|
|
9
18
|
- @backstage/catalog-model@1.7.1
|
|
10
19
|
- @backstage/cli-common@0.1.15
|
|
11
|
-
- @backstage/cli-node@0.2.10
|
|
12
20
|
- @backstage/config@1.3.0
|
|
13
21
|
- @backstage/config-loader@1.9.2
|
|
14
22
|
- @backstage/errors@1.2.5
|
|
15
23
|
- @backstage/eslint-plugin@0.1.10
|
|
16
|
-
- @backstage/integration@1.15.2
|
|
17
|
-
- @backstage/release-manifests@0.0.11
|
|
18
24
|
- @backstage/types@1.2.0
|
|
19
25
|
|
|
20
26
|
## 0.29.0
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
/*
|
|
3
|
+
* Copyright 2020 The Backstage Authors
|
|
4
|
+
*
|
|
5
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
6
|
+
* you may not use this file except in compliance with the License.
|
|
7
|
+
* You may obtain a copy of the License at
|
|
8
|
+
*
|
|
9
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
10
|
+
*
|
|
11
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
12
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
13
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
14
|
+
* See the License for the specific language governing permissions and
|
|
15
|
+
* limitations under the License.
|
|
16
|
+
*/
|
|
17
|
+
|
|
18
|
+
require('@backstage/cli/config/nodeTransform.cjs');
|
|
19
|
+
require('../src/alpha');
|
|
@@ -9,7 +9,7 @@ require('react-dev-utils/openBrowser');
|
|
|
9
9
|
require('webpack');
|
|
10
10
|
require('webpack-dev-server');
|
|
11
11
|
require('../../lib/paths.cjs.js');
|
|
12
|
-
var config = require('../../lib/config.cjs.js');
|
|
12
|
+
var config = require('../../modules/config/lib/config.cjs.js');
|
|
13
13
|
require('eslint-webpack-plugin');
|
|
14
14
|
require('fork-ts-checker-webpack-plugin');
|
|
15
15
|
require('html-webpack-plugin');
|
|
@@ -1,15 +1,9 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
3
|
var commander = require('commander');
|
|
4
|
-
var
|
|
5
|
-
var
|
|
4
|
+
var lazy = require('../lib/lazy.cjs.js');
|
|
5
|
+
var index = require('../modules/config/index.cjs.js');
|
|
6
6
|
|
|
7
|
-
const configOption = [
|
|
8
|
-
"--config <path>",
|
|
9
|
-
"Config files to load instead of app-config.yaml",
|
|
10
|
-
(opt, opts) => opts ? [...opts, opt] : [opt],
|
|
11
|
-
Array()
|
|
12
|
-
];
|
|
13
7
|
function registerRepoCommand(program) {
|
|
14
8
|
const command = program.command("repo [command]").description("Command that run across an entire Backstage project");
|
|
15
9
|
command.command("build").description(
|
|
@@ -23,7 +17,7 @@ function registerRepoCommand(program) {
|
|
|
23
17
|
).option(
|
|
24
18
|
"--minify",
|
|
25
19
|
"Minify the generated code. Does not apply to app package (app is minified by default)."
|
|
26
|
-
).action(lazy(() => Promise.resolve().then(function () { return require('./repo/build.cjs.js'); }).then((m) => m.command)));
|
|
20
|
+
).action(lazy.lazy(() => Promise.resolve().then(function () { return require('./repo/build.cjs.js'); }).then((m) => m.command)));
|
|
27
21
|
command.command("lint").description("Lint all packages in the project").option(
|
|
28
22
|
"--format <format>",
|
|
29
23
|
"Lint report output format",
|
|
@@ -37,17 +31,17 @@ function registerRepoCommand(program) {
|
|
|
37
31
|
).option(
|
|
38
32
|
"--successCacheDir <path>",
|
|
39
33
|
"Set the success cache location, (default: node_modules/.cache/backstage-cli)"
|
|
40
|
-
).option("--fix", "Attempt to automatically fix violations").action(lazy(() => Promise.resolve().then(function () { return require('./repo/lint.cjs.js'); }).then((m) => m.command)));
|
|
34
|
+
).option("--fix", "Attempt to automatically fix violations").action(lazy.lazy(() => Promise.resolve().then(function () { return require('./repo/lint.cjs.js'); }).then((m) => m.command)));
|
|
41
35
|
command.command("fix").description("Automatically fix packages in the project").option(
|
|
42
36
|
"--publish",
|
|
43
37
|
"Enable additional fixes that only apply when publishing packages"
|
|
44
38
|
).option(
|
|
45
39
|
"--check",
|
|
46
40
|
"Fail if any packages would have been changed by the command"
|
|
47
|
-
).action(lazy(() => Promise.resolve().then(function () { return require('./repo/fix.cjs.js'); }).then((m) => m.command)));
|
|
48
|
-
command.command("clean").description("Delete cache and output directories").action(lazy(() => Promise.resolve().then(function () { return require('./repo/clean.cjs.js'); }).then((m) => m.command)));
|
|
41
|
+
).action(lazy.lazy(() => Promise.resolve().then(function () { return require('./repo/fix.cjs.js'); }).then((m) => m.command)));
|
|
42
|
+
command.command("clean").description("Delete cache and output directories").action(lazy.lazy(() => Promise.resolve().then(function () { return require('./repo/clean.cjs.js'); }).then((m) => m.command)));
|
|
49
43
|
command.command("list-deprecations").description("List deprecations").option("--json", "Output as JSON").action(
|
|
50
|
-
lazy(() => Promise.resolve().then(function () { return require('./repo/list-deprecations.cjs.js'); }).then((m) => m.command))
|
|
44
|
+
lazy.lazy(() => Promise.resolve().then(function () { return require('./repo/list-deprecations.cjs.js'); }).then((m) => m.command))
|
|
51
45
|
);
|
|
52
46
|
command.command("test").allowUnknownOption(true).option(
|
|
53
47
|
"--since <ref>",
|
|
@@ -61,14 +55,14 @@ function registerRepoCommand(program) {
|
|
|
61
55
|
).option(
|
|
62
56
|
"--jest-help",
|
|
63
57
|
"Show help for Jest CLI options, which are passed through"
|
|
64
|
-
).description("Run tests, forwarding args to Jest, defaulting to watch mode").action(lazy(() => Promise.resolve().then(function () { return require('./repo/test.cjs.js'); }).then((m) => m.command)));
|
|
58
|
+
).description("Run tests, forwarding args to Jest, defaulting to watch mode").action(lazy.lazy(() => Promise.resolve().then(function () { return require('./repo/test.cjs.js'); }).then((m) => m.command)));
|
|
65
59
|
}
|
|
66
60
|
function registerScriptCommand(program) {
|
|
67
61
|
const command = program.command("package [command]").description("Lifecycle scripts for individual packages");
|
|
68
|
-
command.command("start").description("Start a package for local development").option(...configOption).option("--role <name>", "Run the command with an explicit package role").option("--check", "Enable type checking and linting if available").option("--inspect [host]", "Enable debugger in Node.js environments").option(
|
|
62
|
+
command.command("start").description("Start a package for local development").option(...index.configOption).option("--role <name>", "Run the command with an explicit package role").option("--check", "Enable type checking and linting if available").option("--inspect [host]", "Enable debugger in Node.js environments").option(
|
|
69
63
|
"--inspect-brk [host]",
|
|
70
64
|
"Enable debugger in Node.js environments, breaking before code starts"
|
|
71
|
-
).option("--require <path>", "Add a --require argument to the node process").option("--link <path>", "Link an external workspace for module resolution").action(lazy(() => Promise.resolve().then(function () { return require('./start/index.cjs.js'); }).then((m) => m.command)));
|
|
65
|
+
).option("--require <path>", "Add a --require argument to the node process").option("--link <path>", "Link an external workspace for module resolution").action(lazy.lazy(() => Promise.resolve().then(function () { return require('./start/index.cjs.js'); }).then((m) => m.command)));
|
|
72
66
|
command.command("build").description("Build a package for production deployment or publishing").option("--role <name>", "Run the command with an explicit package role").option(
|
|
73
67
|
"--minify",
|
|
74
68
|
"Minify the generated code. Does not apply to app package (app is minified by default)."
|
|
@@ -83,7 +77,7 @@ function registerScriptCommand(program) {
|
|
|
83
77
|
"Config files to load instead of app-config.yaml. Applies to app packages only.",
|
|
84
78
|
(opt, opts) => opts ? [...opts, opt] : [opt],
|
|
85
79
|
Array()
|
|
86
|
-
).action(lazy(() => Promise.resolve().then(function () { return require('./build/index.cjs.js'); }).then((m) => m.command)));
|
|
80
|
+
).action(lazy.lazy(() => Promise.resolve().then(function () { return require('./build/index.cjs.js'); }).then((m) => m.command)));
|
|
87
81
|
command.command("lint [directories...]").option(
|
|
88
82
|
"--format <format>",
|
|
89
83
|
"Lint report output format",
|
|
@@ -91,30 +85,30 @@ function registerScriptCommand(program) {
|
|
|
91
85
|
).option("--fix", "Attempt to automatically fix violations").option(
|
|
92
86
|
"--max-warnings <number>",
|
|
93
87
|
"Fail if more than this number of warnings. -1 allows warnings. (default: 0)"
|
|
94
|
-
).description("Lint a package").action(lazy(() => Promise.resolve().then(function () { return require('./lint.cjs.js'); }).then((m) => m.default)));
|
|
95
|
-
command.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('./test.cjs.js'); }).then((m) => m.default)));
|
|
96
|
-
command.command("clean").description("Delete cache directories").action(lazy(() => Promise.resolve().then(function () { return require('./clean/clean.cjs.js'); }).then((m) => m.default)));
|
|
97
|
-
command.command("prepack").description("Prepares a package for packaging before publishing").action(lazy(() => Promise.resolve().then(function () { return require('./pack.cjs.js'); }).then((m) => m.pre)));
|
|
98
|
-
command.command("postpack").description("Restores the changes made by the prepack command").action(lazy(() => Promise.resolve().then(function () { return require('./pack.cjs.js'); }).then((m) => m.post)));
|
|
88
|
+
).description("Lint a package").action(lazy.lazy(() => Promise.resolve().then(function () { return require('./lint.cjs.js'); }).then((m) => m.default)));
|
|
89
|
+
command.command("test").allowUnknownOption(true).helpOption(", --backstage-cli-help").description("Run tests, forwarding args to Jest, defaulting to watch mode").action(lazy.lazy(() => Promise.resolve().then(function () { return require('./test.cjs.js'); }).then((m) => m.default)));
|
|
90
|
+
command.command("clean").description("Delete cache directories").action(lazy.lazy(() => Promise.resolve().then(function () { return require('./clean/clean.cjs.js'); }).then((m) => m.default)));
|
|
91
|
+
command.command("prepack").description("Prepares a package for packaging before publishing").action(lazy.lazy(() => Promise.resolve().then(function () { return require('./pack.cjs.js'); }).then((m) => m.pre)));
|
|
92
|
+
command.command("postpack").description("Restores the changes made by the prepack command").action(lazy.lazy(() => Promise.resolve().then(function () { return require('./pack.cjs.js'); }).then((m) => m.post)));
|
|
99
93
|
}
|
|
100
94
|
function registerMigrateCommand(program) {
|
|
101
95
|
const command = program.command("migrate [command]").description("Migration utilities");
|
|
102
|
-
command.command("package-roles").description(`Add package role field to packages that don't have it`).action(lazy(() => Promise.resolve().then(function () { return require('./migrate/packageRole.cjs.js'); }).then((m) => m.default)));
|
|
96
|
+
command.command("package-roles").description(`Add package role field to packages that don't have it`).action(lazy.lazy(() => Promise.resolve().then(function () { return require('./migrate/packageRole.cjs.js'); }).then((m) => m.default)));
|
|
103
97
|
command.command("package-scripts").description("Set package scripts according to each package role").action(
|
|
104
|
-
lazy(() => Promise.resolve().then(function () { return require('./migrate/packageScripts.cjs.js'); }).then((m) => m.command))
|
|
98
|
+
lazy.lazy(() => Promise.resolve().then(function () { return require('./migrate/packageScripts.cjs.js'); }).then((m) => m.command))
|
|
105
99
|
);
|
|
106
100
|
command.command("package-exports").description("Synchronize package subpath export definitions").action(
|
|
107
|
-
lazy(() => Promise.resolve().then(function () { return require('./migrate/packageExports.cjs.js'); }).then((m) => m.command))
|
|
101
|
+
lazy.lazy(() => Promise.resolve().then(function () { return require('./migrate/packageExports.cjs.js'); }).then((m) => m.command))
|
|
108
102
|
);
|
|
109
103
|
command.command("package-lint-configs").description(
|
|
110
104
|
"Migrates all packages to use @backstage/cli/config/eslint-factory"
|
|
111
105
|
).action(
|
|
112
|
-
lazy(() => Promise.resolve().then(function () { return require('./migrate/packageLintConfigs.cjs.js'); }).then((m) => m.command))
|
|
106
|
+
lazy.lazy(() => Promise.resolve().then(function () { return require('./migrate/packageLintConfigs.cjs.js'); }).then((m) => m.command))
|
|
113
107
|
);
|
|
114
108
|
command.command("react-router-deps").description(
|
|
115
109
|
"Migrates the react-router dependencies for all packages to be peer dependencies"
|
|
116
110
|
).action(
|
|
117
|
-
lazy(() => Promise.resolve().then(function () { return require('./migrate/reactRouterDeps.cjs.js'); }).then((m) => m.command))
|
|
111
|
+
lazy.lazy(() => Promise.resolve().then(function () { return require('./migrate/reactRouterDeps.cjs.js'); }).then((m) => m.command))
|
|
118
112
|
);
|
|
119
113
|
}
|
|
120
114
|
function registerCommands(program) {
|
|
@@ -137,34 +131,8 @@ function registerCommands(program) {
|
|
|
137
131
|
).option(
|
|
138
132
|
"--license <license>",
|
|
139
133
|
"The license to use for any new packages (default: Apache-2.0)"
|
|
140
|
-
).option("--no-private", "Do not mark new packages as private").action(lazy(() => Promise.resolve().then(function () { return require('./new/new.cjs.js'); }).then((m) => m.default)));
|
|
141
|
-
|
|
142
|
-
"--package <name>",
|
|
143
|
-
"Only include the schema that applies to the given package"
|
|
144
|
-
).description("Browse the configuration reference documentation").action(lazy(() => Promise.resolve().then(function () { return require('./config/docs.cjs.js'); }).then((m) => m.default)));
|
|
145
|
-
program.command("config:print").option(
|
|
146
|
-
"--package <name>",
|
|
147
|
-
"Only load config schema that applies to the given package"
|
|
148
|
-
).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(
|
|
149
|
-
"--format <format>",
|
|
150
|
-
"Format to print the configuration in, either json or yaml [yaml]"
|
|
151
|
-
).option(...configOption).description("Print the app configuration for the current package").action(lazy(() => Promise.resolve().then(function () { return require('./config/print.cjs.js'); }).then((m) => m.default)));
|
|
152
|
-
program.command("config:check").option(
|
|
153
|
-
"--package <name>",
|
|
154
|
-
"Only load config schema that applies to the given package"
|
|
155
|
-
).option("--lax", "Do not require environment variables to be set").option("--frontend", "Only validate the frontend configuration").option("--deprecated", "Output deprecated configuration settings").option(
|
|
156
|
-
"--strict",
|
|
157
|
-
"Enable strict config validation, forbidding errors and unknown keys"
|
|
158
|
-
).option(...configOption).description(
|
|
159
|
-
"Validate that the given configuration loads and matches schema"
|
|
160
|
-
).action(lazy(() => Promise.resolve().then(function () { return require('./config/validate.cjs.js'); }).then((m) => m.default)));
|
|
161
|
-
program.command("config:schema").option(
|
|
162
|
-
"--package <name>",
|
|
163
|
-
"Only output config schema that applies to the given package"
|
|
164
|
-
).option(
|
|
165
|
-
"--format <format>",
|
|
166
|
-
"Format to print the schema in, either json or yaml [yaml]"
|
|
167
|
-
).option("--merge", "Print the config schemas merged", true).option("--no-merge", "Print the config schemas not merged").description("Print configuration schema").action(lazy(() => Promise.resolve().then(function () { return require('./config/schema.cjs.js'); }).then((m) => m.default)));
|
|
134
|
+
).option("--no-private", "Do not mark new packages as private").action(lazy.lazy(() => Promise.resolve().then(function () { return require('./new/new.cjs.js'); }).then((m) => m.default)));
|
|
135
|
+
index.registerCommands(program);
|
|
168
136
|
registerRepoCommand(program);
|
|
169
137
|
registerScriptCommand(program);
|
|
170
138
|
registerMigrateCommand(program);
|
|
@@ -175,7 +143,7 @@ function registerCommands(program) {
|
|
|
175
143
|
"--release <version|next|main>",
|
|
176
144
|
"Bump to a specific Backstage release line or version",
|
|
177
145
|
"main"
|
|
178
|
-
).option("--skip-install", "Skips yarn install step").option("--skip-migrate", "Skips migration of any moved packages").description("Bump Backstage packages to the latest versions").action(lazy(() => Promise.resolve().then(function () { return require('./versions/bump.cjs.js'); }).then((m) => m.default)));
|
|
146
|
+
).option("--skip-install", "Skips yarn install step").option("--skip-migrate", "Skips migration of any moved packages").description("Bump Backstage packages to the latest versions").action(lazy.lazy(() => Promise.resolve().then(function () { return require('./versions/bump.cjs.js'); }).then((m) => m.default)));
|
|
179
147
|
program.command("versions:migrate").option(
|
|
180
148
|
"--pattern <glob>",
|
|
181
149
|
"Override glob for matching packages to upgrade"
|
|
@@ -184,7 +152,7 @@ function registerCommands(program) {
|
|
|
184
152
|
"Skip code changes and only update package.json files"
|
|
185
153
|
).description(
|
|
186
154
|
"Migrate any plugins that have been moved to the @backstage-community namespace automatically"
|
|
187
|
-
).action(lazy(() => Promise.resolve().then(function () { return require('./versions/migrate.cjs.js'); }).then((m) => m.default)));
|
|
155
|
+
).action(lazy.lazy(() => Promise.resolve().then(function () { return require('./versions/migrate.cjs.js'); }).then((m) => m.default)));
|
|
188
156
|
program.command("build-workspace <workspace-dir> [packages...]").addOption(
|
|
189
157
|
new commander.Option(
|
|
190
158
|
"--alwaysYarnPack",
|
|
@@ -193,9 +161,9 @@ function registerCommands(program) {
|
|
|
193
161
|
).option(
|
|
194
162
|
"--alwaysPack",
|
|
195
163
|
"Force workspace output to be a result of running `yarn pack` on each package (warning: very slow)"
|
|
196
|
-
).description("Builds a temporary dist workspace from the provided packages").action(lazy(() => Promise.resolve().then(function () { return require('./buildWorkspace.cjs.js'); }).then((m) => m.default)));
|
|
197
|
-
program.command("create-github-app <github-org>").description("Create new GitHub App in your organization.").action(lazy(() => Promise.resolve().then(function () { return require('./create-github-app/index.cjs.js'); }).then((m) => m.default)));
|
|
198
|
-
program.command("info").description("Show helpful information for debugging and reporting bugs").action(lazy(() => Promise.resolve().then(function () { return require('./info.cjs.js'); }).then((m) => m.default)));
|
|
164
|
+
).description("Builds a temporary dist workspace from the provided packages").action(lazy.lazy(() => Promise.resolve().then(function () { return require('./buildWorkspace.cjs.js'); }).then((m) => m.default)));
|
|
165
|
+
program.command("create-github-app <github-org>").description("Create new GitHub App in your organization.").action(lazy.lazy(() => Promise.resolve().then(function () { return require('./create-github-app/index.cjs.js'); }).then((m) => m.default)));
|
|
166
|
+
program.command("info").description("Show helpful information for debugging and reporting bugs").action(lazy.lazy(() => Promise.resolve().then(function () { return require('./info.cjs.js'); }).then((m) => m.default)));
|
|
199
167
|
program.command("create").allowUnknownOption(true).action(removed("use 'backstage-cli new' instead"));
|
|
200
168
|
program.command("create-plugin").allowUnknownOption(true).action(removed("use 'backstage-cli new' instead"));
|
|
201
169
|
program.command("plugin:diff").allowUnknownOption(true).action(removed("use 'backstage-cli fix' instead"));
|
|
@@ -217,18 +185,6 @@ function removed(message) {
|
|
|
217
185
|
process.exit(1);
|
|
218
186
|
};
|
|
219
187
|
}
|
|
220
|
-
function lazy(getActionFunc) {
|
|
221
|
-
return async (...args) => {
|
|
222
|
-
try {
|
|
223
|
-
const actionFunc = await getActionFunc();
|
|
224
|
-
await actionFunc(...args);
|
|
225
|
-
process.exit(0);
|
|
226
|
-
} catch (error) {
|
|
227
|
-
errors.assertError(error);
|
|
228
|
-
errors$1.exitWithError(error);
|
|
229
|
-
}
|
|
230
|
-
};
|
|
231
|
-
}
|
|
232
188
|
|
|
233
189
|
exports.registerCommands = registerCommands;
|
|
234
190
|
exports.registerMigrateCommand = registerMigrateCommand;
|
|
@@ -12,6 +12,7 @@ var fs__default = /*#__PURE__*/_interopDefaultCompat(fs);
|
|
|
12
12
|
|
|
13
13
|
const pre = async () => {
|
|
14
14
|
publishing.publishPreflightCheck({
|
|
15
|
+
dir: paths.paths.targetDir,
|
|
15
16
|
packageJson: await fs__default.default.readJson(paths.paths.resolveTarget("package.json"))
|
|
16
17
|
});
|
|
17
18
|
await productionPack.productionPack({
|
|
@@ -18,6 +18,7 @@ var parallel = require('../../lib/parallel.cjs.js');
|
|
|
18
18
|
var releaseManifests = require('@backstage/release-manifests');
|
|
19
19
|
var migrate = require('./migrate.cjs.js');
|
|
20
20
|
var utils = require('./utils.cjs.js');
|
|
21
|
+
var run = require('../../lib/run.cjs.js');
|
|
21
22
|
|
|
22
23
|
function _interopDefaultCompat (e) { return e && typeof e === 'object' && 'default' in e ? e : { default: e }; }
|
|
23
24
|
|
|
@@ -81,6 +82,19 @@ var bump = async (opts) => {
|
|
|
81
82
|
releaseManifest
|
|
82
83
|
});
|
|
83
84
|
}
|
|
85
|
+
if (hasYarnPlugin) {
|
|
86
|
+
console.log();
|
|
87
|
+
console.log(
|
|
88
|
+
`Updating yarn plugin to v${releaseManifest.releaseVersion}...`
|
|
89
|
+
);
|
|
90
|
+
console.log();
|
|
91
|
+
await run.run("yarn", [
|
|
92
|
+
"plugin",
|
|
93
|
+
"import",
|
|
94
|
+
`https://versions.backstage.io/v1/releases/${releaseManifest.releaseVersion}/yarn-plugin`
|
|
95
|
+
]);
|
|
96
|
+
console.log();
|
|
97
|
+
}
|
|
84
98
|
const dependencyMap = await packages.mapDependencies(paths.paths.targetDir, pattern);
|
|
85
99
|
const versionBumps = /* @__PURE__ */ new Map();
|
|
86
100
|
await parallel.runParallelWorkers({
|
|
@@ -2,11 +2,11 @@
|
|
|
2
2
|
|
|
3
3
|
var path = require('path');
|
|
4
4
|
var chalk = require('chalk');
|
|
5
|
-
var webpack = require('webpack');
|
|
5
|
+
var webpack$1 = require('webpack');
|
|
6
6
|
var ESLintPlugin = require('eslint-webpack-plugin');
|
|
7
7
|
var ForkTsCheckerWebpackPlugin = require('fork-ts-checker-webpack-plugin');
|
|
8
8
|
var HtmlWebpackPlugin = require('html-webpack-plugin');
|
|
9
|
-
var webpack
|
|
9
|
+
var webpack = require('@module-federation/enhanced/webpack');
|
|
10
10
|
var ModuleScopePlugin = require('react-dev-utils/ModuleScopePlugin');
|
|
11
11
|
var ReactRefreshPlugin = require('@pmmmwh/react-refresh-webpack-plugin');
|
|
12
12
|
var paths = require('../paths.cjs.js');
|
|
@@ -24,7 +24,7 @@ var ConfigInjectingHtmlWebpackPlugin = require('./ConfigInjectingHtmlWebpackPlug
|
|
|
24
24
|
function _interopDefaultCompat (e) { return e && typeof e === 'object' && 'default' in e ? e : { default: e }; }
|
|
25
25
|
|
|
26
26
|
var chalk__default = /*#__PURE__*/_interopDefaultCompat(chalk);
|
|
27
|
-
var webpack__default = /*#__PURE__*/_interopDefaultCompat(webpack);
|
|
27
|
+
var webpack__default = /*#__PURE__*/_interopDefaultCompat(webpack$1);
|
|
28
28
|
var ESLintPlugin__default = /*#__PURE__*/_interopDefaultCompat(ESLintPlugin);
|
|
29
29
|
var ForkTsCheckerWebpackPlugin__default = /*#__PURE__*/_interopDefaultCompat(ForkTsCheckerWebpackPlugin);
|
|
30
30
|
var HtmlWebpackPlugin__default = /*#__PURE__*/_interopDefaultCompat(HtmlWebpackPlugin);
|
|
@@ -169,7 +169,7 @@ async function createConfig(paths, options) {
|
|
|
169
169
|
}
|
|
170
170
|
if (options.moduleFederation) {
|
|
171
171
|
const isRemote = options.moduleFederation?.mode === "remote";
|
|
172
|
-
const AdaptedModuleFederationPlugin = rspack ? rspack.container.ModuleFederationPlugin : webpack
|
|
172
|
+
const AdaptedModuleFederationPlugin = rspack ? rspack.container.ModuleFederationPlugin : webpack.ModuleFederationPlugin;
|
|
173
173
|
plugins.push(
|
|
174
174
|
new AdaptedModuleFederationPlugin({
|
|
175
175
|
...isRemote && {
|
|
@@ -6,7 +6,7 @@ var openBrowser = require('react-dev-utils/openBrowser');
|
|
|
6
6
|
var webpack = require('webpack');
|
|
7
7
|
var WebpackDevServer = require('webpack-dev-server');
|
|
8
8
|
var paths$1 = require('../paths.cjs.js');
|
|
9
|
-
var config = require('
|
|
9
|
+
var config = require('../../modules/config/lib/config.cjs.js');
|
|
10
10
|
var config$1 = require('./config.cjs.js');
|
|
11
11
|
var packageDetection = require('./packageDetection.cjs.js');
|
|
12
12
|
var paths = require('./paths.cjs.js');
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
var errors = require('@backstage/errors');
|
|
4
|
+
var errors$1 = require('./errors.cjs.js');
|
|
5
|
+
|
|
6
|
+
function lazy(getActionFunc) {
|
|
7
|
+
return async (...args) => {
|
|
8
|
+
try {
|
|
9
|
+
const actionFunc = await getActionFunc();
|
|
10
|
+
await actionFunc(...args);
|
|
11
|
+
process.exit(0);
|
|
12
|
+
} catch (error) {
|
|
13
|
+
errors.assertError(error);
|
|
14
|
+
errors$1.exitWithError(error);
|
|
15
|
+
}
|
|
16
|
+
};
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
exports.lazy = lazy;
|
|
20
|
+
//# sourceMappingURL=lazy.cjs.js.map
|
package/dist/lib/version.cjs.js
CHANGED
|
@@ -3,24 +3,24 @@
|
|
|
3
3
|
var fs = require('fs-extra');
|
|
4
4
|
var semver = require('semver');
|
|
5
5
|
var paths = require('./paths.cjs.js');
|
|
6
|
-
var _package$
|
|
7
|
-
var _package$
|
|
8
|
-
var _package$
|
|
9
|
-
var _package$
|
|
10
|
-
var _package$
|
|
11
|
-
var _package$
|
|
12
|
-
var _package$
|
|
13
|
-
var _package$
|
|
14
|
-
var _package$
|
|
15
|
-
var _package$
|
|
16
|
-
var _package$
|
|
17
|
-
var _package$
|
|
18
|
-
var _package$
|
|
19
|
-
var _package$
|
|
20
|
-
var _package$
|
|
21
|
-
var _package = require('../plugins/catalog-node/package.json.cjs.js');
|
|
22
|
-
var _package$
|
|
23
|
-
var _package
|
|
6
|
+
var _package$1 = require('../packages/backend-plugin-api/package.json.cjs.js');
|
|
7
|
+
var _package$2 = require('../packages/backend-test-utils/package.json.cjs.js');
|
|
8
|
+
var _package$3 = require('../packages/catalog-client/package.json.cjs.js');
|
|
9
|
+
var _package$4 = require('../packages/cli/package.json.cjs.js');
|
|
10
|
+
var _package$5 = require('../packages/config/package.json.cjs.js');
|
|
11
|
+
var _package$6 = require('../packages/core-app-api/package.json.cjs.js');
|
|
12
|
+
var _package$7 = require('../packages/core-components/package.json.cjs.js');
|
|
13
|
+
var _package$8 = require('../packages/core-plugin-api/package.json.cjs.js');
|
|
14
|
+
var _package$9 = require('../packages/dev-utils/package.json.cjs.js');
|
|
15
|
+
var _package$a = require('../packages/errors/package.json.cjs.js');
|
|
16
|
+
var _package$b = require('../packages/test-utils/package.json.cjs.js');
|
|
17
|
+
var _package$d = require('../plugins/scaffolder-node/package.json.cjs.js');
|
|
18
|
+
var _package$e = require('../plugins/scaffolder-node-test-utils/package.json.cjs.js');
|
|
19
|
+
var _package$f = require('../plugins/auth-backend/package.json.cjs.js');
|
|
20
|
+
var _package$g = require('../plugins/auth-backend-module-guest-provider/package.json.cjs.js');
|
|
21
|
+
var _package$h = require('../plugins/catalog-node/package.json.cjs.js');
|
|
22
|
+
var _package$c = require('../packages/theme/package.json.cjs.js');
|
|
23
|
+
var _package = require('../packages/backend-defaults/package.json.cjs.js');
|
|
24
24
|
|
|
25
25
|
function _interopDefaultCompat (e) { return e && typeof e === 'object' && 'default' in e ? e : { default: e }; }
|
|
26
26
|
|
|
@@ -28,24 +28,24 @@ var fs__default = /*#__PURE__*/_interopDefaultCompat(fs);
|
|
|
28
28
|
var semver__default = /*#__PURE__*/_interopDefaultCompat(semver);
|
|
29
29
|
|
|
30
30
|
const packageVersions = {
|
|
31
|
-
"@backstage/backend-defaults": _package
|
|
32
|
-
"@backstage/backend-plugin-api": _package$
|
|
33
|
-
"@backstage/backend-test-utils": _package$
|
|
34
|
-
"@backstage/catalog-client": _package$
|
|
35
|
-
"@backstage/cli": _package$
|
|
36
|
-
"@backstage/config": _package$
|
|
37
|
-
"@backstage/core-app-api": _package$
|
|
38
|
-
"@backstage/core-components": _package$
|
|
39
|
-
"@backstage/core-plugin-api": _package$
|
|
40
|
-
"@backstage/dev-utils": _package$
|
|
41
|
-
"@backstage/errors": _package$
|
|
42
|
-
"@backstage/test-utils": _package$
|
|
43
|
-
"@backstage/theme": _package$
|
|
44
|
-
"@backstage/plugin-scaffolder-node": _package$
|
|
45
|
-
"@backstage/plugin-scaffolder-node-test-utils": _package$
|
|
46
|
-
"@backstage/plugin-auth-backend": _package$
|
|
47
|
-
"@backstage/plugin-auth-backend-module-guest-provider": _package$
|
|
48
|
-
"@backstage/plugin-catalog-node": _package.version
|
|
31
|
+
"@backstage/backend-defaults": _package.version,
|
|
32
|
+
"@backstage/backend-plugin-api": _package$1.version,
|
|
33
|
+
"@backstage/backend-test-utils": _package$2.version,
|
|
34
|
+
"@backstage/catalog-client": _package$3.version,
|
|
35
|
+
"@backstage/cli": _package$4.version,
|
|
36
|
+
"@backstage/config": _package$5.version,
|
|
37
|
+
"@backstage/core-app-api": _package$6.version,
|
|
38
|
+
"@backstage/core-components": _package$7.version,
|
|
39
|
+
"@backstage/core-plugin-api": _package$8.version,
|
|
40
|
+
"@backstage/dev-utils": _package$9.version,
|
|
41
|
+
"@backstage/errors": _package$a.version,
|
|
42
|
+
"@backstage/test-utils": _package$b.version,
|
|
43
|
+
"@backstage/theme": _package$c.version,
|
|
44
|
+
"@backstage/plugin-scaffolder-node": _package$d.version,
|
|
45
|
+
"@backstage/plugin-scaffolder-node-test-utils": _package$e.version,
|
|
46
|
+
"@backstage/plugin-auth-backend": _package$f.version,
|
|
47
|
+
"@backstage/plugin-auth-backend-module-guest-provider": _package$g.version,
|
|
48
|
+
"@backstage/plugin-catalog-node": _package$h.version
|
|
49
49
|
};
|
|
50
50
|
function findVersion() {
|
|
51
51
|
const pkgContent = fs__default.default.readFileSync(paths.paths.resolveOwn("package.json"), "utf8");
|
|
@@ -61,9 +61,6 @@ function createPackageVersionProvider(lockfile) {
|
|
|
61
61
|
throw new Error(`No version available for package ${name}`);
|
|
62
62
|
}
|
|
63
63
|
const lockfileEntries = lockfile?.get(name);
|
|
64
|
-
if (name.startsWith("@types/") && lockfileEntries?.some((entry) => entry.range === "*")) {
|
|
65
|
-
return "*";
|
|
66
|
-
}
|
|
67
64
|
for (const specifier of ["^", "~", "*"]) {
|
|
68
65
|
const range = `workspace:${specifier}`;
|
|
69
66
|
if (lockfileEntries?.some((entry) => entry.range === range)) {
|
|
@@ -4,7 +4,7 @@ Object.defineProperty(exports, '__esModule', { value: true });
|
|
|
4
4
|
|
|
5
5
|
var configLoader = require('@backstage/config-loader');
|
|
6
6
|
var openBrowser = require('react-dev-utils/openBrowser');
|
|
7
|
-
var config = require('
|
|
7
|
+
var config = require('../lib/config.cjs.js');
|
|
8
8
|
|
|
9
9
|
function _interopDefaultCompat (e) { return e && typeof e === 'object' && 'default' in e ? e : { default: e }; }
|
|
10
10
|
|
|
@@ -4,7 +4,7 @@ Object.defineProperty(exports, '__esModule', { value: true });
|
|
|
4
4
|
|
|
5
5
|
var yaml = require('yaml');
|
|
6
6
|
var config$1 = require('@backstage/config');
|
|
7
|
-
var config = require('
|
|
7
|
+
var config = require('../lib/config.cjs.js');
|
|
8
8
|
|
|
9
9
|
var print = async (opts) => {
|
|
10
10
|
const { schema, appConfigs } = await config.loadCliConfig({
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
4
|
|
|
5
5
|
var yaml = require('yaml');
|
|
6
|
-
var config = require('
|
|
6
|
+
var config = require('../lib/config.cjs.js');
|
|
7
7
|
var configLoader = require('@backstage/config-loader');
|
|
8
8
|
|
|
9
9
|
var schema = async (opts) => {
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
var lazy = require('../../lib/lazy.cjs.js');
|
|
4
|
+
|
|
5
|
+
const configOption = [
|
|
6
|
+
"--config <path>",
|
|
7
|
+
"Config files to load instead of app-config.yaml",
|
|
8
|
+
(opt, opts) => opts ? [...opts, opt] : [opt],
|
|
9
|
+
Array()
|
|
10
|
+
];
|
|
11
|
+
function registerCommands(program) {
|
|
12
|
+
program.command("config:docs").option(
|
|
13
|
+
"--package <name>",
|
|
14
|
+
"Only include the schema that applies to the given package"
|
|
15
|
+
).description("Browse the configuration reference documentation").action(lazy.lazy(() => Promise.resolve().then(function () { return require('./commands/docs.cjs.js'); }).then((m) => m.default)));
|
|
16
|
+
program.command("config:print").option(
|
|
17
|
+
"--package <name>",
|
|
18
|
+
"Only load config schema that applies to the given package"
|
|
19
|
+
).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(
|
|
20
|
+
"--format <format>",
|
|
21
|
+
"Format to print the configuration in, either json or yaml [yaml]"
|
|
22
|
+
).option(...configOption).description("Print the app configuration for the current package").action(lazy.lazy(() => Promise.resolve().then(function () { return require('./commands/print.cjs.js'); }).then((m) => m.default)));
|
|
23
|
+
program.command("config:check").option(
|
|
24
|
+
"--package <name>",
|
|
25
|
+
"Only load config schema that applies to the given package"
|
|
26
|
+
).option("--lax", "Do not require environment variables to be set").option("--frontend", "Only validate the frontend configuration").option("--deprecated", "Output deprecated configuration settings").option(
|
|
27
|
+
"--strict",
|
|
28
|
+
"Enable strict config validation, forbidding errors and unknown keys"
|
|
29
|
+
).option(...configOption).description(
|
|
30
|
+
"Validate that the given configuration loads and matches schema"
|
|
31
|
+
).action(lazy.lazy(() => Promise.resolve().then(function () { return require('./commands/validate.cjs.js'); }).then((m) => m.default)));
|
|
32
|
+
program.command("config:schema").option(
|
|
33
|
+
"--package <name>",
|
|
34
|
+
"Only output config schema that applies to the given package"
|
|
35
|
+
).option(
|
|
36
|
+
"--format <format>",
|
|
37
|
+
"Format to print the schema in, either json or yaml [yaml]"
|
|
38
|
+
).option("--merge", "Print the config schemas merged", true).option("--no-merge", "Print the config schemas not merged").description("Print configuration schema").action(lazy.lazy(() => Promise.resolve().then(function () { return require('./commands/schema.cjs.js'); }).then((m) => m.default)));
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
exports.configOption = configOption;
|
|
42
|
+
exports.registerCommands = registerCommands;
|
|
43
|
+
//# sourceMappingURL=index.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 paths = require('
|
|
5
|
+
var paths = require('../../../lib/paths.cjs.js');
|
|
6
6
|
var getPackages = require('@manypkg/get-packages');
|
|
7
7
|
var cliNode = require('@backstage/cli-node');
|
|
8
8
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
-
var version = "0.29.
|
|
3
|
+
var version = "0.29.3-next.0";
|
|
4
4
|
var dependencies = {
|
|
5
5
|
"@backstage/catalog-model": "workspace:^",
|
|
6
6
|
"@backstage/cli-common": "workspace:^",
|
|
@@ -96,7 +96,7 @@ var dependencies = {
|
|
|
96
96
|
"react-refresh": "^0.14.0",
|
|
97
97
|
"recursive-readdir": "^2.2.2",
|
|
98
98
|
"replace-in-file": "^7.1.0",
|
|
99
|
-
rollup: "^4.
|
|
99
|
+
rollup: "^4.27.3",
|
|
100
100
|
"rollup-plugin-dts": "^6.1.0",
|
|
101
101
|
"rollup-plugin-esbuild": "^6.1.1",
|
|
102
102
|
"rollup-plugin-postcss": "^4.0.0",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/cli",
|
|
3
|
-
"version": "0.29.
|
|
3
|
+
"version": "0.29.3-next.0",
|
|
4
4
|
"description": "CLI for developing Backstage plugins and apps",
|
|
5
5
|
"backstage": {
|
|
6
6
|
"role": "cli"
|
|
@@ -42,16 +42,16 @@
|
|
|
42
42
|
"watch": "./src"
|
|
43
43
|
},
|
|
44
44
|
"dependencies": {
|
|
45
|
-
"@backstage/catalog-model": "
|
|
46
|
-
"@backstage/cli-common": "
|
|
47
|
-
"@backstage/cli-node": "
|
|
48
|
-
"@backstage/config": "
|
|
49
|
-
"@backstage/config-loader": "
|
|
50
|
-
"@backstage/errors": "
|
|
51
|
-
"@backstage/eslint-plugin": "
|
|
52
|
-
"@backstage/integration": "
|
|
53
|
-
"@backstage/release-manifests": "
|
|
54
|
-
"@backstage/types": "
|
|
45
|
+
"@backstage/catalog-model": "1.7.1",
|
|
46
|
+
"@backstage/cli-common": "0.1.15",
|
|
47
|
+
"@backstage/cli-node": "0.2.11-next.0",
|
|
48
|
+
"@backstage/config": "1.3.0",
|
|
49
|
+
"@backstage/config-loader": "1.9.2",
|
|
50
|
+
"@backstage/errors": "1.2.5",
|
|
51
|
+
"@backstage/eslint-plugin": "0.1.10",
|
|
52
|
+
"@backstage/integration": "1.16.0-next.0",
|
|
53
|
+
"@backstage/release-manifests": "0.0.12-next.0",
|
|
54
|
+
"@backstage/types": "1.2.0",
|
|
55
55
|
"@manypkg/get-packages": "^1.1.3",
|
|
56
56
|
"@module-federation/enhanced": "^0.7.0",
|
|
57
57
|
"@octokit/graphql": "^5.0.0",
|
|
@@ -136,7 +136,7 @@
|
|
|
136
136
|
"react-refresh": "^0.14.0",
|
|
137
137
|
"recursive-readdir": "^2.2.2",
|
|
138
138
|
"replace-in-file": "^7.1.0",
|
|
139
|
-
"rollup": "^4.
|
|
139
|
+
"rollup": "^4.27.3",
|
|
140
140
|
"rollup-plugin-dts": "^6.1.0",
|
|
141
141
|
"rollup-plugin-esbuild": "^6.1.1",
|
|
142
142
|
"rollup-plugin-postcss": "^4.0.0",
|
|
@@ -158,22 +158,22 @@
|
|
|
158
158
|
"zod": "^3.22.4"
|
|
159
159
|
},
|
|
160
160
|
"devDependencies": {
|
|
161
|
-
"@backstage/backend-plugin-api": "
|
|
162
|
-
"@backstage/backend-test-utils": "
|
|
163
|
-
"@backstage/catalog-client": "
|
|
164
|
-
"@backstage/config": "
|
|
165
|
-
"@backstage/core-app-api": "
|
|
166
|
-
"@backstage/core-components": "
|
|
167
|
-
"@backstage/core-plugin-api": "
|
|
168
|
-
"@backstage/dev-utils": "
|
|
169
|
-
"@backstage/errors": "
|
|
170
|
-
"@backstage/plugin-auth-backend": "
|
|
171
|
-
"@backstage/plugin-auth-backend-module-guest-provider": "
|
|
172
|
-
"@backstage/plugin-catalog-node": "
|
|
173
|
-
"@backstage/plugin-scaffolder-node": "
|
|
174
|
-
"@backstage/plugin-scaffolder-node-test-utils": "
|
|
175
|
-
"@backstage/test-utils": "
|
|
176
|
-
"@backstage/theme": "
|
|
161
|
+
"@backstage/backend-plugin-api": "1.0.3-next.0",
|
|
162
|
+
"@backstage/backend-test-utils": "1.2.0-next.0",
|
|
163
|
+
"@backstage/catalog-client": "1.8.1-next.0",
|
|
164
|
+
"@backstage/config": "1.3.0",
|
|
165
|
+
"@backstage/core-app-api": "1.15.3-next.0",
|
|
166
|
+
"@backstage/core-components": "0.16.2-next.0",
|
|
167
|
+
"@backstage/core-plugin-api": "1.10.1",
|
|
168
|
+
"@backstage/dev-utils": "1.1.5-next.0",
|
|
169
|
+
"@backstage/errors": "1.2.5",
|
|
170
|
+
"@backstage/plugin-auth-backend": "0.24.1-next.0",
|
|
171
|
+
"@backstage/plugin-auth-backend-module-guest-provider": "0.2.3-next.0",
|
|
172
|
+
"@backstage/plugin-catalog-node": "1.14.1-next.0",
|
|
173
|
+
"@backstage/plugin-scaffolder-node": "0.6.1-next.0",
|
|
174
|
+
"@backstage/plugin-scaffolder-node-test-utils": "0.1.16-next.0",
|
|
175
|
+
"@backstage/test-utils": "1.7.3-next.0",
|
|
176
|
+
"@backstage/theme": "0.6.3-next.0",
|
|
177
177
|
"@rspack/core": "^1.0.10",
|
|
178
178
|
"@rspack/dev-server": "^1.0.9",
|
|
179
179
|
"@rspack/plugin-react-refresh": "^1.0.0",
|