@backstage/test-utils 0.0.0-nightly-20220215022550 → 0.0.0-nightly-20220301023335

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +27 -5
  2. package/package.json +19 -15
package/CHANGELOG.md CHANGED
@@ -1,15 +1,37 @@
1
1
  # @backstage/test-utils
2
2
 
3
- ## 0.0.0-nightly-20220215022550
3
+ ## 0.0.0-nightly-20220301023335
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies
8
+ - @backstage/core-plugin-api@0.0.0-nightly-20220301023335
9
+ - @backstage/core-app-api@0.0.0-nightly-20220301023335
10
+ - @backstage/plugin-permission-react@0.0.0-nightly-20220301023335
11
+
12
+ ## 0.2.6
13
+
14
+ ### Patch Changes
15
+
16
+ - Updated dependencies
17
+ - @backstage/core-plugin-api@0.7.0
18
+ - @backstage/core-app-api@0.5.4
19
+ - @backstage/plugin-permission-react@0.3.2
20
+
21
+ ## 0.2.5
4
22
 
5
23
  ### Patch Changes
6
24
 
7
25
  - 1ed305728b: Bump `node-fetch` to version 2.6.7 and `cross-fetch` to version 3.1.5
26
+ - c77c5c7eb6: Added `backstage.role` to `package.json`
8
27
  - Updated dependencies
9
- - @backstage/core-app-api@0.0.0-nightly-20220215022550
10
- - @backstage/core-plugin-api@0.0.0-nightly-20220215022550
11
- - @backstage/plugin-permission-common@0.0.0-nightly-20220215022550
12
- - @backstage/plugin-permission-react@0.0.0-nightly-20220215022550
28
+ - @backstage/core-app-api@0.5.3
29
+ - @backstage/core-plugin-api@0.6.1
30
+ - @backstage/plugin-permission-common@0.5.0
31
+ - @backstage/plugin-permission-react@0.3.1
32
+ - @backstage/config@0.1.14
33
+ - @backstage/theme@0.2.15
34
+ - @backstage/types@0.1.2
13
35
 
14
36
  ## 0.2.4
15
37
 
package/package.json CHANGED
@@ -1,13 +1,16 @@
1
1
  {
2
2
  "name": "@backstage/test-utils",
3
3
  "description": "Utilities to test Backstage plugins and apps.",
4
- "version": "0.0.0-nightly-20220215022550",
4
+ "version": "0.0.0-nightly-20220301023335",
5
5
  "private": false,
6
6
  "publishConfig": {
7
7
  "access": "public",
8
8
  "main": "dist/index.esm.js",
9
9
  "types": "dist/index.d.ts"
10
10
  },
11
+ "backstage": {
12
+ "role": "web-library"
13
+ },
11
14
  "homepage": "https://backstage.io",
12
15
  "repository": {
13
16
  "type": "git",
@@ -21,21 +24,22 @@
21
24
  "main": "dist/index.esm.js",
22
25
  "types": "dist/index.d.ts",
23
26
  "scripts": {
24
- "build": "backstage-cli build --outputs types,esm",
25
- "lint": "backstage-cli lint",
26
- "test": "backstage-cli test",
27
- "prepack": "backstage-cli prepack",
28
- "postpack": "backstage-cli postpack",
29
- "clean": "backstage-cli clean"
27
+ "build": "backstage-cli package build",
28
+ "lint": "backstage-cli package lint",
29
+ "test": "backstage-cli package test",
30
+ "prepack": "backstage-cli package prepack",
31
+ "postpack": "backstage-cli package postpack",
32
+ "clean": "backstage-cli package clean",
33
+ "start": "backstage-cli package start"
30
34
  },
31
35
  "dependencies": {
32
- "@backstage/config": "^0.1.13",
33
- "@backstage/core-app-api": "^0.0.0-nightly-20220215022550",
34
- "@backstage/core-plugin-api": "^0.0.0-nightly-20220215022550",
35
- "@backstage/plugin-permission-common": "^0.0.0-nightly-20220215022550",
36
- "@backstage/plugin-permission-react": "^0.0.0-nightly-20220215022550",
37
- "@backstage/theme": "^0.2.14",
38
- "@backstage/types": "^0.1.1",
36
+ "@backstage/config": "^0.1.15",
37
+ "@backstage/core-app-api": "^0.0.0-nightly-20220301023335",
38
+ "@backstage/core-plugin-api": "^0.0.0-nightly-20220301023335",
39
+ "@backstage/plugin-permission-common": "^0.5.1",
40
+ "@backstage/plugin-permission-react": "^0.0.0-nightly-20220301023335",
41
+ "@backstage/theme": "^0.2.15",
42
+ "@backstage/types": "^0.1.3",
39
43
  "@material-ui/core": "^4.12.2",
40
44
  "@material-ui/icons": "^4.11.2",
41
45
  "@testing-library/jest-dom": "^5.10.1",
@@ -51,7 +55,7 @@
51
55
  "react": "^16.13.1 || ^17.0.0"
52
56
  },
53
57
  "devDependencies": {
54
- "@backstage/cli": "^0.0.0-nightly-20220215022550",
58
+ "@backstage/cli": "^0.14.1",
55
59
  "@types/jest": "^26.0.7",
56
60
  "@types/node": "^14.14.32",
57
61
  "msw": "^0.35.0"