@react-native-community/template 0.84.1 → 0.85.0-rc.1-160a723
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 +2 -2
- package/package.json +2 -2
- package/template/Gemfile +1 -0
- package/template/android/gradle/wrapper/gradle-wrapper.jar +0 -0
- package/template/android/gradle/wrapper/gradle-wrapper.properties +1 -1
- package/template/android/gradlew +0 -3
- package/template/android/gradlew.bat +1 -2
- package/template/jest.config.js +1 -1
- package/template/package.json +6 -6
package/README.md
CHANGED
|
@@ -36,8 +36,8 @@ Everything inside this repository is [MIT licensed](./LICENSE).
|
|
|
36
36
|
|
|
37
37
|
<!-- badges -->
|
|
38
38
|
|
|
39
|
-
[build-badge]: https://img.shields.io/github/actions/workflow/status/react-native-community/template/
|
|
40
|
-
[build]: https://github.com/react-native-community/template/actions/workflows/
|
|
39
|
+
[build-badge]: https://img.shields.io/github/actions/workflow/status/react-native-community/template/tests.yaml?branch=main&style=flat-square
|
|
40
|
+
[build]: https://github.com/react-native-community/template/actions/workflows/tests.yaml
|
|
41
41
|
[version-badge]: https://img.shields.io/npm/v/@react-native-community/template.svg?style=flat-square
|
|
42
42
|
[package]: https://www.npmjs.com/package/@react-native-community/template
|
|
43
43
|
[license-badge]: https://img.shields.io/npm/l/@react-native-community/template.svg?style=flat-square
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@react-native-community/template",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.85.0-rc.1-160a723",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
"scripts": {
|
|
9
9
|
"format": "prettier --write .",
|
|
10
10
|
"test": "jest",
|
|
11
|
-
"version": "0.
|
|
11
|
+
"version": "0.85.0-rc.1"
|
|
12
12
|
},
|
|
13
13
|
"type": "commonjs",
|
|
14
14
|
"files": [
|
package/template/Gemfile
CHANGED
|
Binary file
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
distributionBase=GRADLE_USER_HOME
|
|
2
2
|
distributionPath=wrapper/dists
|
|
3
|
-
distributionUrl=https\://services.gradle.org/distributions/gradle-9.
|
|
3
|
+
distributionUrl=https\://services.gradle.org/distributions/gradle-9.3.1-bin.zip
|
|
4
4
|
networkTimeout=10000
|
|
5
5
|
validateDistributionUrl=true
|
|
6
6
|
zipStoreBase=GRADLE_USER_HOME
|
package/template/android/gradlew
CHANGED
|
@@ -114,7 +114,6 @@ case "$( uname )" in #(
|
|
|
114
114
|
NONSTOP* ) nonstop=true ;;
|
|
115
115
|
esac
|
|
116
116
|
|
|
117
|
-
CLASSPATH="\\\"\\\""
|
|
118
117
|
|
|
119
118
|
|
|
120
119
|
# Determine the Java command to use to start the JVM.
|
|
@@ -172,7 +171,6 @@ fi
|
|
|
172
171
|
# For Cygwin or MSYS, switch paths to Windows format before running java
|
|
173
172
|
if "$cygwin" || "$msys" ; then
|
|
174
173
|
APP_HOME=$( cygpath --path --mixed "$APP_HOME" )
|
|
175
|
-
CLASSPATH=$( cygpath --path --mixed "$CLASSPATH" )
|
|
176
174
|
|
|
177
175
|
JAVACMD=$( cygpath --unix "$JAVACMD" )
|
|
178
176
|
|
|
@@ -212,7 +210,6 @@ DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"'
|
|
|
212
210
|
|
|
213
211
|
set -- \
|
|
214
212
|
"-Dorg.gradle.appname=$APP_BASE_NAME" \
|
|
215
|
-
-classpath "$CLASSPATH" \
|
|
216
213
|
-jar "$APP_HOME/gradle/wrapper/gradle-wrapper.jar" \
|
|
217
214
|
"$@"
|
|
218
215
|
|
|
@@ -75,11 +75,10 @@ goto fail
|
|
|
75
75
|
:execute
|
|
76
76
|
@rem Setup the command line
|
|
77
77
|
|
|
78
|
-
set CLASSPATH=
|
|
79
78
|
|
|
80
79
|
|
|
81
80
|
@rem Execute Gradle
|
|
82
|
-
"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -
|
|
81
|
+
"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -jar "%APP_HOME%\gradle\wrapper\gradle-wrapper.jar" %*
|
|
83
82
|
|
|
84
83
|
:end
|
|
85
84
|
@rem End local scope for the variables with windows NT shell
|
package/template/jest.config.js
CHANGED
package/template/package.json
CHANGED
|
@@ -11,8 +11,8 @@
|
|
|
11
11
|
},
|
|
12
12
|
"dependencies": {
|
|
13
13
|
"react": "19.2.3",
|
|
14
|
-
"react-native": "0.
|
|
15
|
-
"@react-native/new-app-screen": "0.
|
|
14
|
+
"react-native": "0.85.0-rc.1",
|
|
15
|
+
"@react-native/new-app-screen": "0.85.0-rc.1",
|
|
16
16
|
"react-native-safe-area-context": "^5.5.2"
|
|
17
17
|
},
|
|
18
18
|
"devDependencies": {
|
|
@@ -22,10 +22,10 @@
|
|
|
22
22
|
"@react-native-community/cli": "20.1.0",
|
|
23
23
|
"@react-native-community/cli-platform-android": "20.1.0",
|
|
24
24
|
"@react-native-community/cli-platform-ios": "20.1.0",
|
|
25
|
-
"@react-native/babel-preset": "0.
|
|
26
|
-
"@react-native/eslint-config": "0.
|
|
27
|
-
"@react-native/metro-config": "0.
|
|
28
|
-
"@react-native/typescript-config": "0.
|
|
25
|
+
"@react-native/babel-preset": "0.85.0-rc.1",
|
|
26
|
+
"@react-native/eslint-config": "0.85.0-rc.1",
|
|
27
|
+
"@react-native/metro-config": "0.85.0-rc.1",
|
|
28
|
+
"@react-native/typescript-config": "0.85.0-rc.1",
|
|
29
29
|
"@types/jest": "^29.5.13",
|
|
30
30
|
"@types/react": "^19.2.0",
|
|
31
31
|
"@types/react-test-renderer": "^19.1.0",
|