Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Move patch-package from postinstall to prepare #596

Merged
merged 1 commit into from
Jan 10, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions example/ios/Podfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -1509,7 +1509,7 @@ PODS:
- React-logger (= 0.76.3)
- React-perflogger (= 0.76.3)
- React-utils (= 0.76.3)
- RNLiveMarkdown (0.1.216):
- RNLiveMarkdown (0.1.218):
- DoubleConversion
- glog
- hermes-engine
Expand All @@ -1529,10 +1529,10 @@ PODS:
- ReactCodegen
- ReactCommon/turbomodule/bridging
- ReactCommon/turbomodule/core
- RNLiveMarkdown/newarch (= 0.1.216)
- RNLiveMarkdown/newarch (= 0.1.218)
- RNReanimated/worklets
- Yoga
- RNLiveMarkdown/newarch (0.1.216):
- RNLiveMarkdown/newarch (0.1.218):
- DoubleConversion
- glog
- hermes-engine
Expand Down Expand Up @@ -1913,7 +1913,7 @@ SPEC CHECKSUMS:
React-utils: 2bcaf4f4dfe361344bce2fae428603d518488630
ReactCodegen: 3a85e3cb68c92f16b2ffcf192e30364d78f8ccb9
ReactCommon: 89c87b343deacc8610b099ac764848f0ce937e3e
RNLiveMarkdown: 832e5ce7d3896c8352a859497a2465336105ea32
RNLiveMarkdown: cc674559a93c1f503ed6aac341a66346f05ef153
RNReanimated: 97d6090ccdf33859f28cc6d394fb4fd799e75d29
SocketRocket: d4aabe649be1e368d1318fdf28a022d714d65748
Yoga: f6dc1b6029519815d5516a1241821c6a9074af6d
Expand Down
1 change: 0 additions & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 2 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,10 +36,9 @@
"lint:example": "eslint example --ext .js,.ts,.tsx",
"lint:WebExample": "eslint WebExample --ext .js,.ts,.tsx",
"clean": "del-cli android/build example/android/build example/android/app/build example/ios/build lib",
"prepare": "bob build",
"prepare": "patch-package && bob build",
"build:watch": "nodemon --watch src --ext .ts,.tsx,.css --exec \"rm -f .build_complete && npm run prepare && npm pack && touch .build_complete\"",
"release": "release-it",
"postinstall": "patch-package"
"release": "release-it"
},
"keywords": [
"react-native",
Expand Down
Loading