Skip to content

Commit d25a4d9

Browse files
authored
Repo name changes (#46)
- Rename URL in package(s) - Update the Podfile.lock - Add a temporary monkeypatch for boost (react-native dependency). See boostorg/boost#843 for more information.
1 parent afc9a90 commit d25a4d9

File tree

8 files changed

+2171
-222
lines changed

8 files changed

+2171
-222
lines changed

.github/actions/setup/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,5 +31,5 @@ runs:
3131
3232
- name: Install dependencies
3333
if: steps.yarn-cache.outputs.cache-hit != 'true'
34-
run: yarn install --immutable
34+
run: yarn install --immutable && yarn postinstall
3535
shell: bash

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
This repo is subdivided into 3 parts using yarn workspaces:
44

5-
- The base repo (workspace name = `checkout-kit-react-native`)
5+
- The base repo (workspace name = `checkout-sheet-kit-react-native`)
66
- The `@shopify/checkout-sheet-kit` Native Module (workspace name = `module`)
77
- The sample application (workspace name = `sample`)
88

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# Shopify Checkout Kit - React Native (Developer Preview)
22

3-
[![GitHub license](https://img.shields.io/badge/license-MIT-lightgrey.svg?style=flat)](https://github.com/Shopify/checkout-kit-react-native/blob/main/LICENSE)
3+
[![GitHub license](https://img.shields.io/badge/license-MIT-lightgrey.svg?style=flat)](https://github.com/Shopify/checkout-sheet-kit-react-native/blob/main/LICENSE)
44

5-
![image](https://github.com/Shopify/checkout-kit-react-native/assets/2034704/107fbeb8-50be-43ac-8837-33d576cac9ab)
5+
![image](https://github.com/Shopify/checkout-sheet-kit-react-native/assets/2034704/107fbeb8-50be-43ac-8837-33d576cac9ab)
66

77
**Shopify Checkout Kit** is a Native Module (currently in
88
[Developer Preview](https://shopify.dev/docs/api/release-notes/developer-previews))

modules/@shopify/checkout-sheet-kit/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"module": "lib/module/index.js",
99
"description": "A React Native library for Shopify's Checkout Kit.",
1010
"author": "Shopify",
11-
"homepage": "https://github.com/shopify/checkout-kit-react-native",
11+
"homepage": "https://github.com/shopify/checkout-sheet-kit-react-native",
1212
"publishConfig": {
1313
"registry": "https://registry.npmjs.org/"
1414
},

package.json

Lines changed: 11 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
{
2-
"name": "checkout-kit-react-native",
2+
"name": "checkout-sheet-kit-react-native",
33
"description": "A React Native library for Shopify's Checkout Kit.",
44
"private": true,
55
"version": "0.0.1",
6-
"repository": "https://github.com/Shopify/checkout-kit-react-native",
7-
"author": "Shopify (https://github.com/Shopify/checkout-kit-react-native)",
6+
"repository": "https://github.com/Shopify/checkout-sheet-kit-react-native",
7+
"author": "Shopify (https://github.com/Shopify/checkout-sheet-kit-react-native)",
88
"license": "MIT",
99
"bugs": {
10-
"url": "https://github.com/Shopify/checkout-kit-react-native/issues"
10+
"url": "https://github.com/Shopify/checkout-sheet-kit-react-native/issues"
1111
},
12-
"homepage": "https://github.com/Shopify/checkout-kit-react-native",
12+
"homepage": "https://github.com/Shopify/checkout-sheet-kit-react-native",
1313
"workspaces": [
1414
"sample",
1515
"modules/**/*"
@@ -21,7 +21,8 @@
2121
"pod-install": "NO_FLIPPER=1 pod-install",
2222
"snapshot": "./scripts/create_snapshot",
2323
"turbo": "turbo",
24-
"test": "jest"
24+
"test": "jest",
25+
"postinstall": "patch-package"
2526
},
2627
"devDependencies": {
2728
"@babel/core": "^7.20.0",
@@ -32,16 +33,18 @@
3233
"@tsconfig/react-native": "^3.0.0",
3334
"@types/jest": "^29.5.10",
3435
"@types/react": "^18",
35-
"@types/react-native": "0.72.7",
36+
"@types/react-native": "0.72.8",
3637
"@types/react-native-dotenv": "^0.2.1",
3738
"@types/react-test-renderer": "^18.0.0",
3839
"babel-jest": "^29.7.0",
3940
"eslint": "^8.19.0",
4041
"jest": "^29.2.1",
42+
"patch-package": "^8.0.0",
4143
"pod-install": "^0.1.39",
44+
"postinstall-postinstall": "^2.1.0",
4245
"prettier": "^2.4.1",
4346
"react": "^18.2.0",
44-
"react-native": "0.72.7",
47+
"react-native": "0.72.8",
4548
"react-native-dotenv": "^3.4.9",
4649
"react-native-gradle-plugin": "^0.71.19",
4750
"react-test-renderer": "18.2.0",

0 commit comments

Comments
 (0)