@computools/react-native-template-controller 1.0.15 → 1.0.17
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/package.json +1 -1
- package/template/.gitignore +66 -0
- package/template/Gemfile +4 -2
- package/template/package.json +3 -3
package/README.md
CHANGED
@@ -10,7 +10,7 @@
|
|
10
10
|
|
11
11
|
<img src="https://ik.imagekit.io/computools/computools-background/upload-8a50e7e4-c14e-4b55-ae17-bd0cca2f6493.webp">
|
12
12
|
|
13
|
-
### Latest supported RN version [0.73.
|
13
|
+
### Latest supported RN version [0.73.5](https://github.com/facebook/react-native/releases/tag/v0.73.5) 🎯
|
14
14
|
|
15
15
|
### Precondition: 📗
|
16
16
|
|
package/package.json
CHANGED
@@ -0,0 +1,66 @@
|
|
1
|
+
# OSX
|
2
|
+
#
|
3
|
+
.DS_Store
|
4
|
+
|
5
|
+
# Xcode
|
6
|
+
#
|
7
|
+
build/
|
8
|
+
*.pbxuser
|
9
|
+
!default.pbxuser
|
10
|
+
*.mode1v3
|
11
|
+
!default.mode1v3
|
12
|
+
*.mode2v3
|
13
|
+
!default.mode2v3
|
14
|
+
*.perspectivev3
|
15
|
+
!default.perspectivev3
|
16
|
+
xcuserdata
|
17
|
+
*.xccheckout
|
18
|
+
*.moved-aside
|
19
|
+
DerivedData
|
20
|
+
*.hmap
|
21
|
+
*.ipa
|
22
|
+
*.xcuserstate
|
23
|
+
ios/.xcode.env.local
|
24
|
+
|
25
|
+
# Android/IntelliJ
|
26
|
+
#
|
27
|
+
build/
|
28
|
+
.idea
|
29
|
+
.gradle
|
30
|
+
local.properties
|
31
|
+
*.iml
|
32
|
+
*.hprof
|
33
|
+
.cxx/
|
34
|
+
*.keystore
|
35
|
+
!debug.keystore
|
36
|
+
|
37
|
+
# node.js
|
38
|
+
#
|
39
|
+
node_modules/
|
40
|
+
npm-debug.log
|
41
|
+
yarn-error.log
|
42
|
+
|
43
|
+
# fastlane
|
44
|
+
#
|
45
|
+
# It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the
|
46
|
+
# screenshots whenever they are needed.
|
47
|
+
# For more information about the recommended setup visit:
|
48
|
+
# https://docs.fastlane.tools/best-practices/source-control/
|
49
|
+
|
50
|
+
**/fastlane/report.xml
|
51
|
+
**/fastlane/Preview.html
|
52
|
+
**/fastlane/screenshots
|
53
|
+
**/fastlane/test_output
|
54
|
+
|
55
|
+
# Bundle artifact
|
56
|
+
*.jsbundle
|
57
|
+
|
58
|
+
# Ruby / CocoaPods
|
59
|
+
/ios/Pods/
|
60
|
+
/vendor/bundle/
|
61
|
+
|
62
|
+
# Temporary files created by Metro to check the health of the file watcher
|
63
|
+
.metro-health-check*
|
64
|
+
|
65
|
+
# testing
|
66
|
+
/coverage
|
package/template/Gemfile
CHANGED
@@ -3,5 +3,7 @@ source 'https://rubygems.org'
|
|
3
3
|
# You may use http://rbenv.org/ or https://rvm.io/ to install and use this version
|
4
4
|
ruby ">= 2.6.10"
|
5
5
|
|
6
|
-
|
7
|
-
|
6
|
+
# Cocoapods 1.15 introduced a bug which break the build. We will remove the upper
|
7
|
+
# bound in the template on Cocoapods with next React Native release.
|
8
|
+
gem 'cocoapods', '>= 1.13', '< 1.15'
|
9
|
+
gem 'activesupport', '>= 6.1.7.5', '< 7.1.0'
|
package/template/package.json
CHANGED
@@ -36,7 +36,7 @@
|
|
36
36
|
"react": "18.2.0",
|
37
37
|
"react-hook-form": "7.49.2",
|
38
38
|
"react-i18next": "14.0.0",
|
39
|
-
"react-native": "0.73.
|
39
|
+
"react-native": "0.73.5",
|
40
40
|
"react-native-bootsplash": "4.5.3",
|
41
41
|
"react-native-config": "1.5.1",
|
42
42
|
"react-native-mmkv": "2.11.0",
|
@@ -50,9 +50,9 @@
|
|
50
50
|
"@babel/preset-env": "^7.20.0",
|
51
51
|
"@babel/runtime": "^7.20.0",
|
52
52
|
"@computools/eslint-config-react-native": "1.1.1",
|
53
|
-
"@react-native/babel-preset": "0.73.
|
53
|
+
"@react-native/babel-preset": "0.73.21",
|
54
54
|
"@react-native/eslint-config": "0.73.2",
|
55
|
-
"@react-native/metro-config": "0.73.
|
55
|
+
"@react-native/metro-config": "0.73.5",
|
56
56
|
"@react-native/typescript-config": "0.73.1",
|
57
57
|
"@types/jest": "^29.2.1",
|
58
58
|
"@types/metro-config": "^0.76.3",
|