@backstage/cli 0.0.0-nightly-20240505021515 → 0.0.0-nightly-20240507021634

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  # @backstage/cli
2
2
 
3
- ## 0.0.0-nightly-20240505021515
3
+ ## 0.0.0-nightly-20240507021634
4
4
 
5
5
  ### Patch Changes
6
6
 
@@ -9,9 +9,10 @@
9
9
  - f97ad04: Add preserveModules to rollup, which allows better async loading and tree-shaking in webpack
10
10
  - 2a6f10d: The `versions:bump` command will no longer exit with a non-zero status if the version bump fails due to forbidden duplicate package installations. It will now also provide more information about how to troubleshoot such an error. The set of forbidden duplicates has also been expanded to include all `@backstage/*-app-api` packages.
11
11
  - cc3c518: Fixed an issue causing the `repo fix` command to set an incorrect `workspace` property using Windows
12
+ - 812dff0: Add previously-missing semicolon in file templated by `backstage-cli new --select plugin`.
12
13
  - Updated dependencies
13
- - @backstage/catalog-model@0.0.0-nightly-20240505021515
14
- - @backstage/integration@0.0.0-nightly-20240505021515
14
+ - @backstage/catalog-model@0.0.0-nightly-20240507021634
15
+ - @backstage/integration@0.0.0-nightly-20240507021634
15
16
 
16
17
  ## 0.26.5-next.0
17
18
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@backstage/cli",
3
- "version": "0.0.0-nightly-20240505021515",
3
+ "version": "0.0.0-nightly-20240507021634",
4
4
  "description": "CLI for developing Backstage plugins and apps",
5
5
  "backstage": {
6
6
  "role": "cli"
@@ -42,14 +42,14 @@
42
42
  "watch": "./src"
43
43
  },
44
44
  "dependencies": {
45
- "@backstage/catalog-model": "^0.0.0-nightly-20240505021515",
45
+ "@backstage/catalog-model": "^0.0.0-nightly-20240507021634",
46
46
  "@backstage/cli-common": "^0.1.13",
47
47
  "@backstage/cli-node": "^0.2.5",
48
48
  "@backstage/config": "^1.2.0",
49
49
  "@backstage/config-loader": "^1.8.0",
50
50
  "@backstage/errors": "^1.2.4",
51
51
  "@backstage/eslint-plugin": "^0.1.7",
52
- "@backstage/integration": "^0.0.0-nightly-20240505021515",
52
+ "@backstage/integration": "^0.0.0-nightly-20240507021634",
53
53
  "@backstage/release-manifests": "^0.0.11",
54
54
  "@backstage/types": "^1.1.1",
55
55
  "@manypkg/get-packages": "^1.1.3",
@@ -155,16 +155,16 @@
155
155
  "zod": "^3.22.4"
156
156
  },
157
157
  "devDependencies": {
158
- "@backstage/backend-common": "^0.0.0-nightly-20240505021515",
159
- "@backstage/backend-plugin-api": "^0.0.0-nightly-20240505021515",
160
- "@backstage/backend-test-utils": "^0.0.0-nightly-20240505021515",
158
+ "@backstage/backend-common": "^0.0.0-nightly-20240507021634",
159
+ "@backstage/backend-plugin-api": "^0.0.0-nightly-20240507021634",
160
+ "@backstage/backend-test-utils": "^0.0.0-nightly-20240507021634",
161
161
  "@backstage/config": "^1.2.0",
162
162
  "@backstage/core-app-api": "^1.12.4",
163
- "@backstage/core-components": "^0.0.0-nightly-20240505021515",
163
+ "@backstage/core-components": "^0.0.0-nightly-20240507021634",
164
164
  "@backstage/core-plugin-api": "^1.9.2",
165
- "@backstage/dev-utils": "^0.0.0-nightly-20240505021515",
166
- "@backstage/test-utils": "^0.0.0-nightly-20240505021515",
167
- "@backstage/theme": "^0.0.0-nightly-20240505021515",
165
+ "@backstage/dev-utils": "^0.0.0-nightly-20240507021634",
166
+ "@backstage/test-utils": "^0.0.0-nightly-20240507021634",
167
+ "@backstage/theme": "^0.0.0-nightly-20240507021634",
168
168
  "@types/cross-spawn": "^6.0.2",
169
169
  "@types/diff": "^5.0.0",
170
170
  "@types/ejs": "^3.1.3",
@@ -8,7 +8,7 @@ describe('ExampleFetchComponent', () => {
8
8
 
9
9
  // Wait for the table to render
10
10
  const table = await screen.findByRole('table');
11
- const nationality = screen.getAllByText('GB')
11
+ const nationality = screen.getAllByText('GB');
12
12
  // Assert that the table contains the expected user data
13
13
  expect(table).toBeInTheDocument();
14
14
  expect(screen.getByAltText('Carolyn')).toBeInTheDocument();