Skip to content

Commit 964c6ee

Browse files
authored
update to TurboModules (#154)
1 parent b5536d9 commit 964c6ee

File tree

94 files changed

+21404
-64333
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

94 files changed

+21404
-64333
lines changed

.circleci/config.yml

Lines changed: 0 additions & 98 deletions
This file was deleted.

.gitattributes

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
*.pbxproj -text
22
# specific for windows script files
3-
*.bat text eol=crlf
3+
*.bat text eol=crlf

.github/workflows/deploy_to_npmjs.yml

Lines changed: 12 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -17,18 +17,20 @@ jobs:
1717
with:
1818
submodules: true
1919

20-
- name: Install Node
20+
- name: Install nvm
2121
run: |
22-
sudo apt update
23-
sudo apt upgrade
24-
sudo apt-get install -y curl
25-
curl -fsSL https://deb.nodesource.com/setup_16.x | sudo -E bash -
26-
sudo apt-get install -y nodejs
22+
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.40.3/install.sh | bash
23+
export NVM_DIR="$HOME/.nvm"
24+
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh"
25+
[ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion"
26+
nvm install
27+
nvm use
2728
2829
- name: Build and Deploy to npmjs
2930
run: |
30-
npm ci
31-
npm run build
32-
npm run build:expo-plugin
31+
yarn install
32+
yarn build
33+
yarn build:expo-plugin
34+
yarn pack
3335
echo "//registry.npmjs.org/:_authToken=${NPM_TOKEN}">.npmrc
34-
npm publish
36+
yarn npm publish

.gitignore

Lines changed: 22 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ DerivedData
2828
*.ipa
2929
*.xcuserstate
3030
project.xcworkspace
31+
**/.xcode.env.local
3132

3233
# Android/IJ
3334
#
@@ -44,6 +45,9 @@ android.iml
4445
#
4546
example/ios/Pods
4647

48+
# Ruby
49+
example/vendor/
50+
4751
# node.js
4852
#
4953
node_modules/
@@ -57,11 +61,26 @@ buck-out/
5761
android/app/libs
5862
android/keystores/debug.keystore
5963

64+
# Yarn
65+
.yarn/*
66+
!.yarn/patches
67+
!.yarn/plugins
68+
!.yarn/releases
69+
!.yarn/sdks
70+
!.yarn/versions
71+
6072
# Expo
61-
.expo/*
73+
.expo/
74+
75+
# Turborepo
76+
.turbo/
6277

6378
# generated by bob
6479
lib/
6580

66-
# Expo config plugin
67-
expo-plugin/build/
81+
# React Native Codegen
82+
ios/generated
83+
android/generated
84+
85+
# React Native Nitro Modules
86+
nitrogen/

.husky/.npmignore

Lines changed: 0 additions & 1 deletion
This file was deleted.

.husky/commit-msg

Lines changed: 0 additions & 4 deletions
This file was deleted.

.husky/pre-commit

Lines changed: 0 additions & 4 deletions
This file was deleted.

.nvmrc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
v20.19.0

.watchmanconfig

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
{}

.yarn/plugins/@yarnpkg/plugin-interactive-tools.cjs

Lines changed: 541 additions & 0 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)