@shopify/app-bridge-react 4.2.7 → 4.2.10
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 +20 -0
- package/README.md +6 -0
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,25 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 4.2.10
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [[`9f8ecdb615732364fbdb1c010f385e58b4b5525d`](https://github.com/Shopify/extensibility/commit/9f8ecdb615732364fbdb1c010f385e58b4b5525d)]:
|
|
8
|
+
- @shopify/app-bridge-types@0.7.0
|
|
9
|
+
|
|
10
|
+
## 4.2.9
|
|
11
|
+
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
- Updated dependencies [[`e6a8c26486ab44faa524d8041bbdcb3bbb6b1515`](https://github.com/Shopify/extensibility/commit/e6a8c26486ab44faa524d8041bbdcb3bbb6b1515)]:
|
|
15
|
+
- @shopify/app-bridge-types@0.6.0
|
|
16
|
+
|
|
17
|
+
## 4.2.8
|
|
18
|
+
|
|
19
|
+
### Patch Changes
|
|
20
|
+
|
|
21
|
+
- [#882](https://github.com/Shopify/extensibility/pull/882) [`c69c5196a0442c5e656b691ef00166dec4145b72`](https://github.com/Shopify/extensibility/commit/c69c5196a0442c5e656b691ef00166dec4145b72) Thanks [@Fionoble](https://github.com/Fionoble)! - Force patch
|
|
22
|
+
|
|
3
23
|
## 4.2.7
|
|
4
24
|
|
|
5
25
|
### Patch Changes
|
package/README.md
CHANGED
|
@@ -46,6 +46,12 @@ If you prefer [Yarn](https://classic.yarnpkg.com/en/), use the following command
|
|
|
46
46
|
yarn add @shopify/app-bridge-react
|
|
47
47
|
```
|
|
48
48
|
|
|
49
|
+
If you prefer [pnpm](https://pnpm.io/), use the following command instead:
|
|
50
|
+
|
|
51
|
+
```bash
|
|
52
|
+
pnpm add @shopify/app-bridge-react
|
|
53
|
+
```
|
|
54
|
+
|
|
49
55
|
## Configuration
|
|
50
56
|
|
|
51
57
|
1. Include the `app-bridge.js` script tag in your app. Replace `%SHOPIFY_API_KEY%` with your app's [client ID](https://shopify.dev/docs/apps/auth/client-secret#retrieve-your-apps-client-credentials). This configures your app to use Shopify App Bridge.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@shopify/app-bridge-react",
|
|
3
|
-
"version": "4.2.
|
|
3
|
+
"version": "4.2.10",
|
|
4
4
|
"description": "React wrappers for the Shopify App Bridge library",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "Shopify Inc.",
|
|
@@ -52,7 +52,7 @@
|
|
|
52
52
|
"CHANGELOG.md"
|
|
53
53
|
],
|
|
54
54
|
"dependencies": {
|
|
55
|
-
"@shopify/app-bridge-types": "0.
|
|
55
|
+
"@shopify/app-bridge-types": "0.7.0"
|
|
56
56
|
},
|
|
57
57
|
"devDependencies": {
|
|
58
58
|
"@types/react": "^18.3.4",
|