@backstage/version-bridge 1.0.7 → 1.0.8
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 +6 -0
- package/dist/index.d.ts +1 -1
- package/package.json +19 -19
package/CHANGELOG.md
CHANGED
package/dist/index.d.ts
CHANGED
|
@@ -101,4 +101,4 @@ declare function createVersionedContextForTesting(key: string): {
|
|
|
101
101
|
reset(): void;
|
|
102
102
|
};
|
|
103
103
|
|
|
104
|
-
export { VersionedValue, createVersionedContext, createVersionedContextForTesting, createVersionedValueMap, getOrCreateGlobalSingleton, useVersionedContext };
|
|
104
|
+
export { type VersionedValue, createVersionedContext, createVersionedContextForTesting, createVersionedValueMap, getOrCreateGlobalSingleton, useVersionedContext };
|
package/package.json
CHANGED
|
@@ -1,52 +1,52 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/version-bridge",
|
|
3
|
+
"version": "1.0.8",
|
|
3
4
|
"description": "Utilities used by @backstage packages to support multiple concurrent versions",
|
|
4
|
-
"
|
|
5
|
+
"backstage": {
|
|
6
|
+
"role": "web-library"
|
|
7
|
+
},
|
|
5
8
|
"publishConfig": {
|
|
6
9
|
"access": "public",
|
|
7
10
|
"main": "dist/index.esm.js",
|
|
8
11
|
"types": "dist/index.d.ts"
|
|
9
12
|
},
|
|
10
|
-
"
|
|
11
|
-
"
|
|
12
|
-
|
|
13
|
+
"keywords": [
|
|
14
|
+
"backstage"
|
|
15
|
+
],
|
|
13
16
|
"homepage": "https://backstage.io",
|
|
14
17
|
"repository": {
|
|
15
18
|
"type": "git",
|
|
16
19
|
"url": "https://github.com/backstage/backstage",
|
|
17
20
|
"directory": "packages/version-bridge"
|
|
18
21
|
},
|
|
19
|
-
"keywords": [
|
|
20
|
-
"backstage"
|
|
21
|
-
],
|
|
22
22
|
"license": "Apache-2.0",
|
|
23
|
+
"sideEffects": false,
|
|
23
24
|
"main": "dist/index.esm.js",
|
|
24
25
|
"types": "dist/index.d.ts",
|
|
25
|
-
"
|
|
26
|
+
"files": [
|
|
27
|
+
"dist"
|
|
28
|
+
],
|
|
26
29
|
"scripts": {
|
|
27
30
|
"build": "backstage-cli package build",
|
|
31
|
+
"clean": "backstage-cli package clean",
|
|
28
32
|
"lint": "backstage-cli package lint",
|
|
29
|
-
"test": "backstage-cli package test",
|
|
30
33
|
"prepack": "backstage-cli package prepack",
|
|
31
34
|
"postpack": "backstage-cli package postpack",
|
|
32
|
-
"
|
|
33
|
-
"
|
|
35
|
+
"start": "backstage-cli package start",
|
|
36
|
+
"test": "backstage-cli package test"
|
|
34
37
|
},
|
|
35
38
|
"dependencies": {
|
|
36
39
|
"@types/react": "^16.13.1 || ^17.0.0"
|
|
37
40
|
},
|
|
41
|
+
"devDependencies": {
|
|
42
|
+
"@backstage/cli": "^0.26.3",
|
|
43
|
+
"@testing-library/jest-dom": "^6.0.0",
|
|
44
|
+
"@testing-library/react": "^15.0.0"
|
|
45
|
+
},
|
|
38
46
|
"peerDependencies": {
|
|
39
47
|
"react": "^16.13.1 || ^17.0.0 || ^18.0.0",
|
|
40
48
|
"react-dom": "^16.13.1 || ^17.0.0 || ^18.0.0",
|
|
41
49
|
"react-router-dom": "6.0.0-beta.0 || ^6.3.0"
|
|
42
50
|
},
|
|
43
|
-
"devDependencies": {
|
|
44
|
-
"@backstage/cli": "^0.24.0",
|
|
45
|
-
"@testing-library/jest-dom": "^6.0.0",
|
|
46
|
-
"@testing-library/react": "^14.0.0"
|
|
47
|
-
},
|
|
48
|
-
"files": [
|
|
49
|
-
"dist"
|
|
50
|
-
],
|
|
51
51
|
"module": "./dist/index.esm.js"
|
|
52
52
|
}
|