Skip to content

Commit 0a0fa3f

Browse files
committed
Update react-native to 0.79
1 parent 5b6b0f0 commit 0a0fa3f

File tree

90 files changed

+5300
-14597
lines changed

Some content is hidden

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

90 files changed

+5300
-14597
lines changed

.bundle/config

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
BUNDLE_PATH: "vendor/bundle"
2+
BUNDLE_FORCE_RUBY_PLATFORM: 1

.eslintignore

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

.eslintrc.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
module.exports = {
22
root: true,
3-
extends: '@react-native-community',
3+
extends: '@react-native',
44
};

.gitignore

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ DerivedData
2020
*.hmap
2121
*.ipa
2222
*.xcuserstate
23-
ios/.xcode.env.local
23+
**/.xcode.env.local
2424

2525
# Android/IntelliJ
2626
#
@@ -33,6 +33,7 @@ local.properties
3333
.cxx/
3434
*.keystore
3535
!debug.keystore
36+
.kotlin/
3637

3738
# node.js
3839
#
@@ -56,11 +57,22 @@ yarn-error.log
5657
*.jsbundle
5758

5859
# Ruby / CocoaPods
59-
/ios/Pods/
60+
**/Pods/
6061
/vendor/bundle/
6162

6263
# Temporary files created by Metro to check the health of the file watcher
6364
.metro-health-check*
6465

66+
# testing
67+
/coverage
68+
69+
# Yarn
70+
.yarn/*
71+
!.yarn/patches
72+
!.yarn/plugins
73+
!.yarn/releases
74+
!.yarn/sdks
75+
!.yarn/versions
76+
6577
/dist
6678
!/dist/.gitkeep

.npmignore

Lines changed: 18 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,22 @@
1-
.vscode/
1+
__tests__/
2+
.bundle/
23
.github/
3-
.prettierrc.js
4-
.eslintrc.js
5-
yarn.lock
6-
tsconfig.json
7-
babel.config.js
4+
android/
5+
ios/
86
node_modules/
9-
__tests__/
107
screenshots/
11-
Sample/
12-
src/
138
scripts/
9+
.eslintrc.js
10+
.gitignore
11+
.prettierrc.js
12+
.watchmanconfig
13+
app.json
14+
babel.config.js
15+
DEPENDENTS.md
16+
Gemfile
17+
index.js
18+
jest.config.js
19+
metro.config.js
20+
tsconfig.build.json
21+
tsconfig.json
22+
yarn.lock

.watchmanconfig

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

Sample/App.tsx renamed to App.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ import GradientShimmer, {
1717
ShimmerLayoutContainerType,
1818
createGradientShimmer,
1919
GradientShimmerPropsType,
20-
} from 'react-native-gradient-shimmer';
20+
} from './lib';
2121

2222
const styles = StyleSheet.create({
2323
safeArea: {

Gemfile

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
source 'https://rubygems.org'
2+
3+
# You may use http://rbenv.org/ or https://rvm.io/ to install and use this version
4+
ruby ">= 2.6.10"
5+
6+
# Exclude problematic versions of cocoapods and activesupport that causes build failures.
7+
gem 'cocoapods', '>= 1.13', '!= 1.15.0', '!= 1.15.1'
8+
gem 'activesupport', '>= 6.1.7.5', '!= 7.1.0'
9+
gem 'xcodeproj', '< 1.26.0'
10+
gem 'concurrent-ruby', '< 1.3.4'
11+
12+
# Ruby 3.4.0 has removed some libraries from the standard library.
13+
gem 'bigdecimal'
14+
gem 'logger'
15+
gem 'benchmark'
16+
gem 'mutex_m'

Sample/.eslintrc.js

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

Sample/.gitignore

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

0 commit comments

Comments
 (0)