Skip to content

Commit

Permalink
Merge pull request #24 from wordpress-mobile/add-react-native-reanima…
Browse files Browse the repository at this point in the history
…ted-2.17.0

Add `react-native-reanimated` library with version `2.17.0`
  • Loading branch information
fluiddot committed Jun 13, 2023
2 parents 3afecbd + d00056f commit 95a3c2e
Show file tree
Hide file tree
Showing 4 changed files with 50 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .buildkite/publish-libraries.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,14 @@ react-native-webview
react-native-masked-view
react-native-clipboard
react-native-fast-image
react-native-reanimated
)

# `react-native-reanimated` library uses JSC by default. These env vars will force it to use Hermes instead.
# Reference: https://t.ly/DQou
export CLIENT_SIDE_BUILD="True"
export JS_RUNTIME="hermes"

for project in "${PROJECTS[@]}"
do
EXIT_CODE=0
Expand Down
41 changes: 41 additions & 0 deletions package-lock.json

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

1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
"@react-native-masked-view/masked-view": "0.2.6",
"@react-native-clipboard/clipboard": "1.9.0",
"react-native-fast-image": "8.5.11",
"react-native-reanimated": "2.17.0",
"react-native": "0.71.8"
},
"dependencies": {
Expand Down
2 changes: 2 additions & 0 deletions settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -32,3 +32,5 @@ include(":react-native-clipboard")
project(":react-native-clipboard").projectDir = File(rootProject.projectDir, "node_modules/@react-native-clipboard/clipboard/android")
include(":react-native-fast-image")
project(":react-native-fast-image").projectDir = File(rootProject.projectDir, "node_modules/react-native-fast-image/android")
include(":react-native-reanimated")
project(":react-native-reanimated").projectDir = File(rootProject.projectDir, "node_modules/react-native-reanimated/android")

0 comments on commit 95a3c2e

Please sign in to comment.