Skip to content

Commit 8cec0eb

Browse files
committed
added support for RN 0.57.3
1 parent 50744d4 commit 8cec0eb

File tree

3 files changed

+118
-554
lines changed

3 files changed

+118
-554
lines changed

README.md

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,10 @@ This is a simple `react-native init` project with some libraries. This project i
1414
* ESlint
1515
* Airbnb's ESlint rules
1616

17+
## Description
18+
19+
Starting a new project can take some time to configure project structure, libraries and so on... So, I decided to make this starter kit open source for anyone who needs a little help.
20+
1721
## Download
1822

1923
You can download this boilerplate from command line:
@@ -36,6 +40,8 @@ cd ios/ && pod install
3640
cd .. && yarn start
3741
```
3842

39-
## Description
43+
## Tips
4044

41-
Starting a new project can take some time to configure project structure, libraries and so on... So, I decided to make this starter kit open source for anyone who needs a little help.
45+
### jsc-android
46+
47+
Android's react-native support is based on an old version of jsc-android (November of 2014) which is, basically, the JavaScript interpreter for Android, but we can update it ourselves to gain performance improvements. I've been doing it for a while and I've seen performance improvements. On the other hand, to update jsc-android you will have to support only versions of Android> 5.0, which nowadays seems fine. If you would like to give it a try, check this [NPM package](https://www.npmjs.com/package/jsc-android).

package.json

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@
88
},
99
"dependencies": {
1010
"@redux-offline/redux-offline": "^2.4.0",
11-
"react": "16.5.0",
12-
"react-native": "^0.57.2",
13-
"react-native-navigation": "^1.1.484",
11+
"react": "16.6.0-alpha.8af6728",
12+
"react-native": "^0.57.3",
13+
"react-native-navigation": "^1.1.489",
1414
"react-redux": "^5.0.7",
15-
"redux": "^4.0.0",
16-
"redux-saga": "^0.16.0"
15+
"redux": "^4.0.1",
16+
"redux-saga": "^0.16.2"
1717
},
1818
"devDependencies": {
1919
"@babel/core": "7.0.0-beta.56",
@@ -22,15 +22,15 @@
2222
"babel-core": "7.0.0-bridge.0",
2323
"babel-eslint": "^10.0.1",
2424
"babel-jest": "^23.6.0",
25-
"metro-react-native-babel-preset": "0.43.5",
25+
"metro-react-native-babel-preset": "^0.48.1",
2626
"eslint": "^4.19.1",
27-
"eslint-config-airbnb": "^17.0.0",
28-
"eslint-plugin-import": "^2.12.0",
27+
"eslint-config-airbnb": "^17.1.0",
28+
"eslint-plugin-import": "^2.14.0",
2929
"eslint-plugin-jest": "^21.17.0",
30-
"eslint-plugin-jsx-a11y": "^6.0.3",
30+
"eslint-plugin-jsx-a11y": "^6.1.2",
3131
"eslint-plugin-react": "^7.9.1",
32-
"jest": "^23.4.0",
33-
"react-test-renderer": "^16.4.1",
32+
"jest": "^23.6.0",
33+
"react-test-renderer": "^16.5.2",
3434
"redux-logger": "^3.0.6"
3535
},
3636
"jest": {

0 commit comments

Comments
 (0)