Skip to content

Commit 75c7138

Browse files
committed
updated template to match latest rn version
1 parent 104470d commit 75c7138

File tree

6 files changed

+17
-68
lines changed

6 files changed

+17
-68
lines changed

template/.gitignore

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

template/_gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,10 @@ build/
3030
local.properties
3131
*.iml
3232

33+
# Visual Studio Code
34+
#
35+
.vscode/
36+
3337
# node.js
3438
#
3539
node_modules/

template/_prettierrc.js

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
module.exports = {
2+
bracketSpacing: false,
3+
jsxBracketSameLine: true,
4+
singleQuote: true,
5+
trailingComma: 'all',
6+
};

template/android/app/debug.keystore

100644100755
File mode changed.

template/ios/Podfile

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ target 'HelloWorld' do
66
pod 'React', :path => '../node_modules/react-native/'
77
pod 'React-Core', :path => '../node_modules/react-native/React'
88
pod 'React-DevSupport', :path => '../node_modules/react-native/React'
9-
pod 'React-fishhook', :path => '../node_modules/react-native/Libraries/fishhook'
109
pod 'React-RCTActionSheet', :path => '../node_modules/react-native/Libraries/ActionSheetIOS'
1110
pod 'React-RCTAnimation', :path => '../node_modules/react-native/Libraries/NativeAnimation'
1211
pod 'React-RCTBlob', :path => '../node_modules/react-native/Libraries/Blob'

template/package.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -8,21 +8,21 @@
88
},
99
"dependencies": {
1010
"react": "16.8.6",
11-
"react-native": "0.60.3"
11+
"react-native": "0.60.5"
1212
},
1313
"devDependencies": {
1414
"@babel/core": "^7.5.0",
1515
"@babel/runtime": "^7.5.0",
1616
"@react-native-community/eslint-config": "^0.0.3",
17-
"@types/jest": "^24.0.15",
18-
"@types/react": "^16.8.23",
19-
"@types/react-native": "^0.60.1",
20-
"@types/react-test-renderer": "^16.8.2",
17+
"@types/jest": "^24.0.18",
18+
"@types/react": "^16.9.2",
19+
"@types/react-native": "^0.60.14",
20+
"@types/react-test-renderer": "^16.9.0",
2121
"babel-jest": "^24.1.0",
2222
"jest": "^24.1.0",
23-
"metro-react-native-babel-preset": "^0.54.1",
23+
"metro-react-native-babel-preset": "0.54.1",
2424
"react-test-renderer": "16.8.6",
25-
"typescript": "^3.5.3"
25+
"typescript": "^3.6.3"
2626
},
2727
"jest": {
2828
"preset": "react-native",

0 commit comments

Comments
 (0)