Skip to content

Commit

Permalink
Repo name changes (#46)
Browse files Browse the repository at this point in the history
- 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.
  • Loading branch information
markmur committed Jan 8, 2024
1 parent afc9a90 commit d25a4d9
Show file tree
Hide file tree
Showing 8 changed files with 2,171 additions and 222 deletions.
2 changes: 1 addition & 1 deletion .github/actions/setup/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,5 +31,5 @@ runs:
- name: Install dependencies
if: steps.yarn-cache.outputs.cache-hit != 'true'
run: yarn install --immutable
run: yarn install --immutable && yarn postinstall
shell: bash
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

This repo is subdivided into 3 parts using yarn workspaces:

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

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# Shopify Checkout Kit - React Native (Developer Preview)

[![GitHub license](https://img.shields.io/badge/license-MIT-lightgrey.svg?style=flat)](https://github.com/Shopify/checkout-kit-react-native/blob/main/LICENSE)
[![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)

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

**Shopify Checkout Kit** is a Native Module (currently in
[Developer Preview](https://shopify.dev/docs/api/release-notes/developer-previews))
Expand Down
2 changes: 1 addition & 1 deletion modules/@shopify/checkout-sheet-kit/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"module": "lib/module/index.js",
"description": "A React Native library for Shopify's Checkout Kit.",
"author": "Shopify",
"homepage": "https://github.com/shopify/checkout-kit-react-native",
"homepage": "https://github.com/shopify/checkout-sheet-kit-react-native",
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
Expand Down
19 changes: 11 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
{
"name": "checkout-kit-react-native",
"name": "checkout-sheet-kit-react-native",
"description": "A React Native library for Shopify's Checkout Kit.",
"private": true,
"version": "0.0.1",
"repository": "https://github.com/Shopify/checkout-kit-react-native",
"author": "Shopify (https://github.com/Shopify/checkout-kit-react-native)",
"repository": "https://github.com/Shopify/checkout-sheet-kit-react-native",
"author": "Shopify (https://github.com/Shopify/checkout-sheet-kit-react-native)",
"license": "MIT",
"bugs": {
"url": "https://github.com/Shopify/checkout-kit-react-native/issues"
"url": "https://github.com/Shopify/checkout-sheet-kit-react-native/issues"
},
"homepage": "https://github.com/Shopify/checkout-kit-react-native",
"homepage": "https://github.com/Shopify/checkout-sheet-kit-react-native",
"workspaces": [
"sample",
"modules/**/*"
Expand All @@ -21,7 +21,8 @@
"pod-install": "NO_FLIPPER=1 pod-install",
"snapshot": "./scripts/create_snapshot",
"turbo": "turbo",
"test": "jest"
"test": "jest",
"postinstall": "patch-package"
},
"devDependencies": {
"@babel/core": "^7.20.0",
Expand All @@ -32,16 +33,18 @@
"@tsconfig/react-native": "^3.0.0",
"@types/jest": "^29.5.10",
"@types/react": "^18",
"@types/react-native": "0.72.7",
"@types/react-native": "0.72.8",
"@types/react-native-dotenv": "^0.2.1",
"@types/react-test-renderer": "^18.0.0",
"babel-jest": "^29.7.0",
"eslint": "^8.19.0",
"jest": "^29.2.1",
"patch-package": "^8.0.0",
"pod-install": "^0.1.39",
"postinstall-postinstall": "^2.1.0",
"prettier": "^2.4.1",
"react": "^18.2.0",
"react-native": "0.72.7",
"react-native": "0.72.8",
"react-native-dotenv": "^3.4.9",
"react-native-gradle-plugin": "^0.71.19",
"react-test-renderer": "18.2.0",
Expand Down

0 comments on commit d25a4d9

Please sign in to comment.