@backstage/create-app 0.0.0-nightly-202191522214 → 0.0.0-nightly-202191622432

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,11 +1,53 @@
1
1
  # @backstage/create-app
2
2
 
3
- ## 0.0.0-nightly-202191522214
3
+ ## 0.0.0-nightly-202191622432
4
4
 
5
5
  ### Patch Changes
6
6
 
7
+ - b486adb8c6: Removed the included `jest` configuration from the root `package.json` as the `transformModules` option no longer exists.
8
+
9
+ To apply this change to an existing app, make the follow change to the root `package.json`:
10
+
11
+ ```diff
12
+ - "jest": {
13
+ - "transformModules": [
14
+ - "@asyncapi/react-component"
15
+ - ]
16
+ - }
17
+ ```
18
+
7
19
  - Updated dependencies
8
- - @backstage/plugin-auth-backend@0.0.0-nightly-202191522214
20
+ - @backstage/plugin-auth-backend@0.0.0-nightly-202191622432
21
+ - @backstage/cli@0.0.0-nightly-202191622432
22
+ - @backstage/backend-common@0.0.0-nightly-202191622432
23
+ - @backstage/catalog-client@0.0.0-nightly-202191622432
24
+ - @backstage/catalog-model@0.0.0-nightly-202191622432
25
+ - @backstage/core-app-api@0.0.0-nightly-202191622432
26
+ - @backstage/core-components@0.0.0-nightly-202191622432
27
+ - @backstage/core-plugin-api@0.0.0-nightly-202191622432
28
+ - @backstage/errors@0.0.0-nightly-202191622432
29
+ - @backstage/integration-react@0.0.0-nightly-202191622432
30
+ - @backstage/test-utils@0.0.0-nightly-202191622432
31
+ - @backstage/theme@0.0.0-nightly-202191622432
32
+ - @backstage/plugin-api-docs@0.0.0-nightly-202191622432
33
+ - @backstage/plugin-app-backend@0.0.0-nightly-202191622432
34
+ - @backstage/plugin-catalog@0.0.0-nightly-202191622432
35
+ - @backstage/plugin-catalog-backend@0.0.0-nightly-202191622432
36
+ - @backstage/plugin-catalog-import@0.0.0-nightly-202191622432
37
+ - @backstage/plugin-explore@0.0.0-nightly-202191622432
38
+ - @backstage/plugin-github-actions@0.0.0-nightly-202191622432
39
+ - @backstage/plugin-lighthouse@0.0.0-nightly-202191622432
40
+ - @backstage/plugin-proxy-backend@0.0.0-nightly-202191622432
41
+ - @backstage/plugin-rollbar-backend@0.0.0-nightly-202191622432
42
+ - @backstage/plugin-scaffolder@0.0.0-nightly-202191622432
43
+ - @backstage/plugin-scaffolder-backend@0.0.0-nightly-202191622432
44
+ - @backstage/plugin-search@0.0.0-nightly-202191622432
45
+ - @backstage/plugin-search-backend@0.0.0-nightly-202191622432
46
+ - @backstage/plugin-search-backend-node@0.0.0-nightly-202191622432
47
+ - @backstage/plugin-tech-radar@0.0.0-nightly-202191622432
48
+ - @backstage/plugin-techdocs@0.0.0-nightly-202191622432
49
+ - @backstage/plugin-techdocs-backend@0.0.0-nightly-202191622432
50
+ - @backstage/plugin-user-settings@0.0.0-nightly-202191622432
9
51
 
10
52
  ## 0.3.45
11
53
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@backstage/create-app",
3
3
  "description": "A CLI that helps you create your own Backstage app",
4
- "version": "0.0.0-nightly-202191522214",
4
+ "version": "0.0.0-nightly-202191622432",
5
5
  "private": false,
6
6
  "publishConfig": {
7
7
  "access": "public"
@@ -49,10 +49,5 @@
49
49
  "*.{json,md}": [
50
50
  "prettier --write"
51
51
  ]
52
- },
53
- "jest": {
54
- "transformModules": [
55
- "@asyncapi/react-component"
56
- ]
57
52
  }
58
53
  }