@backstage/version-bridge 0.1.1 → 0.1.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.
Files changed (2) hide show
  1. package/CHANGELOG.md +6 -0
  2. package/package.json +13 -9
package/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @backstage/version-bridge
2
2
 
3
+ ## 0.1.2
4
+
5
+ ### Patch Changes
6
+
7
+ - c77c5c7eb6: Added `backstage.role` to `package.json`
8
+
3
9
  ## 0.1.1
4
10
 
5
11
  ### Patch Changes
package/package.json CHANGED
@@ -1,13 +1,16 @@
1
1
  {
2
2
  "name": "@backstage/version-bridge",
3
3
  "description": "Utilities used by @backstage packages to support multiple concurrent versions",
4
- "version": "0.1.1",
4
+ "version": "0.1.2",
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,19 +24,20 @@
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
  "peerDependencies": {
32
36
  "@types/react": "^16.13.1 || ^17.0.0",
33
37
  "react": "^16.13.1 || ^17.0.0"
34
38
  },
35
39
  "devDependencies": {
36
- "@backstage/cli": "^0.10.1",
40
+ "@backstage/cli": "^0.14.0",
37
41
  "@testing-library/jest-dom": "^5.10.1",
38
42
  "@testing-library/react": "^11.2.5",
39
43
  "@testing-library/react-hooks": "^7.0.2"
@@ -41,5 +45,5 @@
41
45
  "files": [
42
46
  "dist"
43
47
  ],
44
- "gitHead": "562be0b43016294e27af3ad024191bb86b13b1c1"
48
+ "gitHead": "4805c3d13ce9bfc369e53c271b1b95e722b3b4dc"
45
49
  }