@backstage/cli 0.29.0-next.1 → 0.29.0-next.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +22 -0
- package/config/eslint-factory.js +1 -1
- package/config/jest.js +1 -1
- package/dist/lib/builder/config.cjs.js +1 -0
- package/dist/lib/bundler/linkWorkspaces.cjs.js +7 -4
- package/dist/lib/bundler/transforms.cjs.js +2 -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 +1 -1
- package/dist/packages/dev-utils/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 +10 -10
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,27 @@
|
|
|
1
1
|
# @backstage/cli
|
|
2
2
|
|
|
3
|
+
## 0.29.0-next.2
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- bc47b17: **BREAKING**: Updates ESLint config to ignore all generated source code under `src/**/generated/**/*.ts`.
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- e19c53c: Fix for the `--link` flag for `package start` to deduplicate `react-router` and `react-router-dom`.
|
|
12
|
+
- e565f73: Added support for `.webp` files in the frontend tooling.
|
|
13
|
+
- Updated dependencies
|
|
14
|
+
- @backstage/catalog-model@1.7.0
|
|
15
|
+
- @backstage/cli-common@0.1.15-next.0
|
|
16
|
+
- @backstage/cli-node@0.2.10-next.0
|
|
17
|
+
- @backstage/config@1.2.0
|
|
18
|
+
- @backstage/config-loader@1.9.2-next.0
|
|
19
|
+
- @backstage/errors@1.2.4
|
|
20
|
+
- @backstage/eslint-plugin@0.1.10
|
|
21
|
+
- @backstage/integration@1.15.1
|
|
22
|
+
- @backstage/release-manifests@0.0.11
|
|
23
|
+
- @backstage/types@1.1.1
|
|
24
|
+
|
|
3
25
|
## 0.29.0-next.1
|
|
4
26
|
|
|
5
27
|
### Minor Changes
|
package/config/eslint-factory.js
CHANGED
package/config/jest.js
CHANGED
|
@@ -213,7 +213,7 @@ async function getProjectConfig(targetPath, extraConfig, extraOptions) {
|
|
|
213
213
|
},
|
|
214
214
|
},
|
|
215
215
|
],
|
|
216
|
-
'\\.(bmp|gif|jpg|jpeg|png|ico|frag|xml|svg|eot|woff|woff2|ttf)$':
|
|
216
|
+
'\\.(bmp|gif|jpg|jpeg|png|ico|webp|frag|xml|svg|eot|woff|woff2|ttf)$':
|
|
217
217
|
require.resolve('./jestFileTransform.js'),
|
|
218
218
|
'\\.(yaml)$': require.resolve('./jestYamlTransform'),
|
|
219
219
|
},
|
|
@@ -19,11 +19,14 @@ async function createWorkspaceLinkingPlugins(bundler, workspace) {
|
|
|
19
19
|
}),
|
|
20
20
|
// react and react-dom are always resolved from the target directory
|
|
21
21
|
// Note: this often requires that the linked and target workspace use the same versions of React
|
|
22
|
-
new bundler.NormalModuleReplacementPlugin(
|
|
23
|
-
|
|
24
|
-
|
|
22
|
+
new bundler.NormalModuleReplacementPlugin(
|
|
23
|
+
/^react(?:-router)?(?:-dom)?$/,
|
|
24
|
+
(resource) => {
|
|
25
|
+
if (!path.relative(linkedRoot.dir, resource.context).startsWith("..")) {
|
|
26
|
+
resource.context = paths.paths.targetDir;
|
|
27
|
+
}
|
|
25
28
|
}
|
|
26
|
-
|
|
29
|
+
)
|
|
27
30
|
];
|
|
28
31
|
}
|
|
29
32
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/cli",
|
|
3
|
-
"version": "0.29.0-next.
|
|
3
|
+
"version": "0.29.0-next.2",
|
|
4
4
|
"description": "CLI for developing Backstage plugins and apps",
|
|
5
5
|
"backstage": {
|
|
6
6
|
"role": "cli"
|
|
@@ -159,20 +159,20 @@
|
|
|
159
159
|
},
|
|
160
160
|
"devDependencies": {
|
|
161
161
|
"@backstage/backend-common": "^0.25.0",
|
|
162
|
-
"@backstage/backend-plugin-api": "1.0.2-next.
|
|
163
|
-
"@backstage/backend-test-utils": "1.0
|
|
164
|
-
"@backstage/catalog-client": "1.8.0-next.
|
|
162
|
+
"@backstage/backend-plugin-api": "1.0.2-next.2",
|
|
163
|
+
"@backstage/backend-test-utils": "1.1.0-next.2",
|
|
164
|
+
"@backstage/catalog-client": "1.8.0-next.1",
|
|
165
165
|
"@backstage/config": "1.2.0",
|
|
166
166
|
"@backstage/core-app-api": "1.15.1",
|
|
167
167
|
"@backstage/core-components": "0.16.0-next.1",
|
|
168
168
|
"@backstage/core-plugin-api": "1.10.0",
|
|
169
|
-
"@backstage/dev-utils": "1.1.3-next.
|
|
169
|
+
"@backstage/dev-utils": "1.1.3-next.2",
|
|
170
170
|
"@backstage/errors": "1.2.4",
|
|
171
|
-
"@backstage/plugin-auth-backend": "0.24.0-next.
|
|
172
|
-
"@backstage/plugin-auth-backend-module-guest-provider": "0.2.2-next.
|
|
173
|
-
"@backstage/plugin-catalog-node": "1.14.0-next.
|
|
174
|
-
"@backstage/plugin-scaffolder-node": "0.5.1-next.
|
|
175
|
-
"@backstage/plugin-scaffolder-node-test-utils": "0.1.15-next.
|
|
171
|
+
"@backstage/plugin-auth-backend": "0.24.0-next.2",
|
|
172
|
+
"@backstage/plugin-auth-backend-module-guest-provider": "0.2.2-next.2",
|
|
173
|
+
"@backstage/plugin-catalog-node": "1.14.0-next.2",
|
|
174
|
+
"@backstage/plugin-scaffolder-node": "0.5.1-next.2",
|
|
175
|
+
"@backstage/plugin-scaffolder-node-test-utils": "0.1.15-next.2",
|
|
176
176
|
"@backstage/test-utils": "1.7.1-next.0",
|
|
177
177
|
"@backstage/theme": "0.6.1-next.0",
|
|
178
178
|
"@rspack/core": "^1.0.10",
|