@react-native-community/template 0.82.1 → 0.83.0-rc.1-8c5f5e9

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@react-native-community/template",
3
- "version": "0.82.1",
3
+ "version": "0.83.0-rc.1-8c5f5e9",
4
4
  "description": "The template used by `npx @react-native-community/cli init` to bootstrap a React Native application.",
5
5
  "license": "MIT",
6
6
  "publishConfig": {
@@ -8,7 +8,7 @@
8
8
  },
9
9
  "scripts": {
10
10
  "test": "jest",
11
- "version": "0.82.1"
11
+ "version": "0.83.0-rc.1"
12
12
  },
13
13
  "type": "commonjs",
14
14
  "files": [
@@ -179,7 +179,7 @@
179
179
  );
180
180
  runOnlyForDeploymentPostprocessing = 0;
181
181
  shellPath = /bin/sh;
182
- shellScript = "set -e\n\nWITH_ENVIRONMENT=\"$REACT_NATIVE_PATH/scripts/xcode/with-environment.sh\"\nREACT_NATIVE_XCODE=\"$REACT_NATIVE_PATH/scripts/react-native-xcode.sh\"\n\n/bin/sh -c \"$WITH_ENVIRONMENT $REACT_NATIVE_XCODE\"\n";
182
+ shellScript = "set -e\n\nWITH_ENVIRONMENT=\"$REACT_NATIVE_PATH/scripts/xcode/with-environment.sh\"\nREACT_NATIVE_XCODE=\"$REACT_NATIVE_PATH/scripts/react-native-xcode.sh\"\n\n/bin/sh -c \"\\\"$WITH_ENVIRONMENT\\\" \\\"$REACT_NATIVE_XCODE\\\"\"\n";
183
183
  };
184
184
  00EEFC60759A1932668264C0 /* [CP] Embed Pods Frameworks */ = {
185
185
  isa = PBXShellScriptBuildPhase;
@@ -10,9 +10,9 @@
10
10
  "test": "jest"
11
11
  },
12
12
  "dependencies": {
13
- "react": "19.1.1",
14
- "react-native": "0.82.1",
15
- "@react-native/new-app-screen": "0.82.1",
13
+ "react": "19.2.0",
14
+ "react-native": "0.83.0-rc.1",
15
+ "@react-native/new-app-screen": "0.83.0-rc.1",
16
16
  "react-native-safe-area-context": "^5.5.2"
17
17
  },
18
18
  "devDependencies": {
@@ -22,17 +22,17 @@
22
22
  "@react-native-community/cli": "20.0.0",
23
23
  "@react-native-community/cli-platform-android": "20.0.0",
24
24
  "@react-native-community/cli-platform-ios": "20.0.0",
25
- "@react-native/babel-preset": "0.82.1",
26
- "@react-native/eslint-config": "0.82.1",
27
- "@react-native/metro-config": "0.82.1",
28
- "@react-native/typescript-config": "0.82.1",
25
+ "@react-native/babel-preset": "0.83.0-rc.1",
26
+ "@react-native/eslint-config": "0.83.0-rc.1",
27
+ "@react-native/metro-config": "0.83.0-rc.1",
28
+ "@react-native/typescript-config": "0.83.0-rc.1",
29
29
  "@types/jest": "^29.5.13",
30
- "@types/react": "^19.1.1",
30
+ "@types/react": "^19.2.0",
31
31
  "@types/react-test-renderer": "^19.1.0",
32
32
  "eslint": "^8.19.0",
33
33
  "jest": "^29.6.3",
34
34
  "prettier": "2.8.8",
35
- "react-test-renderer": "19.1.1",
35
+ "react-test-renderer": "19.2.0",
36
36
  "typescript": "^5.8.3"
37
37
  },
38
38
  "engines": {
@@ -1,5 +1,8 @@
1
1
  {
2
2
  "extends": "@react-native/typescript-config",
3
+ "compilerOptions": {
4
+ "types": ["jest"],
5
+ },
3
6
  "include": ["**/*.ts", "**/*.tsx"],
4
7
  "exclude": ["**/node_modules", "**/Pods"]
5
8
  }