@backstage/backend-test-utils 0.1.17 → 0.1.20

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 +26 -0
  2. package/package.json +16 -12
package/CHANGELOG.md CHANGED
@@ -1,5 +1,31 @@
1
1
  # @backstage/backend-test-utils
2
2
 
3
+ ## 0.1.20
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies
8
+ - @backstage/backend-common@0.12.0
9
+ - @backstage/cli@0.15.0
10
+
11
+ ## 0.1.19
12
+
13
+ ### Patch Changes
14
+
15
+ - Updated dependencies
16
+ - @backstage/backend-common@0.11.0
17
+ - @backstage/cli@0.14.1
18
+
19
+ ## 0.1.18
20
+
21
+ ### Patch Changes
22
+
23
+ - c77c5c7eb6: Added `backstage.role` to `package.json`
24
+ - Updated dependencies
25
+ - @backstage/cli@0.14.0
26
+ - @backstage/backend-common@0.10.8
27
+ - @backstage/config@0.1.14
28
+
3
29
  ## 0.1.17
4
30
 
5
31
  ### Patch Changes
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@backstage/backend-test-utils",
3
3
  "description": "Test helpers library for Backstage backends",
4
- "version": "0.1.17",
4
+ "version": "0.1.20",
5
5
  "main": "dist/index.cjs.js",
6
6
  "types": "dist/index.d.ts",
7
7
  "private": false,
@@ -10,6 +10,9 @@
10
10
  "main": "dist/index.cjs.js",
11
11
  "types": "dist/index.d.ts"
12
12
  },
13
+ "backstage": {
14
+ "role": "node-library"
15
+ },
13
16
  "homepage": "https://backstage.io",
14
17
  "repository": {
15
18
  "type": "git",
@@ -22,17 +25,18 @@
22
25
  ],
23
26
  "license": "Apache-2.0",
24
27
  "scripts": {
25
- "build": "backstage-cli build --outputs cjs,types",
26
- "lint": "backstage-cli lint",
27
- "test": "backstage-cli test",
28
- "prepack": "backstage-cli prepack",
29
- "postpack": "backstage-cli postpack",
30
- "clean": "backstage-cli clean"
28
+ "build": "backstage-cli package build",
29
+ "lint": "backstage-cli package lint",
30
+ "test": "backstage-cli package test",
31
+ "prepack": "backstage-cli package prepack",
32
+ "postpack": "backstage-cli package postpack",
33
+ "clean": "backstage-cli package clean",
34
+ "start": "backstage-cli package start"
31
35
  },
32
36
  "dependencies": {
33
- "@backstage/backend-common": "^0.10.7",
34
- "@backstage/cli": "^0.13.2",
35
- "@backstage/config": "^0.1.13",
37
+ "@backstage/backend-common": "^0.12.0",
38
+ "@backstage/cli": "^0.15.0",
39
+ "@backstage/config": "^0.1.15",
36
40
  "@vscode/sqlite3": "^5.0.7",
37
41
  "knex": "^1.0.2",
38
42
  "mysql2": "^2.2.5",
@@ -41,11 +45,11 @@
41
45
  "uuid": "^8.0.0"
42
46
  },
43
47
  "devDependencies": {
44
- "@backstage/cli": "^0.13.2",
48
+ "@backstage/cli": "^0.15.0",
45
49
  "jest": "^26.0.1"
46
50
  },
47
51
  "files": [
48
52
  "dist"
49
53
  ],
50
- "gitHead": "4f4bc77a4152d372b10a4e8d97d92f00e23f3b56"
54
+ "gitHead": "04bb0dd824b78f6b57dac62c3015e681f094045c"
51
55
  }