expo-module-scripts 3.1.1 → 3.2.0

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/CHANGELOG.md CHANGED
@@ -10,6 +10,16 @@
10
10
 
11
11
  ### 💡 Others
12
12
 
13
+ ## 3.2.0 — 2023-10-17
14
+
15
+ ### 🎉 New features
16
+
17
+ - Preserve JSX in production exports to support jsx/createElement interception. ([#24889](https://github.com/expo/expo/pull/24889) by [@EvanBacon](https://github.com/EvanBacon))
18
+
19
+ ### 💡 Others
20
+
21
+ - Transpile for Node 18 (LTS). ([#24471](https://github.com/expo/expo/pull/24471) by [@EvanBacon](https://github.com/EvanBacon))
22
+
13
23
  ## 3.1.1 — 2023-09-18
14
24
 
15
25
  _This version does not introduce any user-facing changes._
@@ -78,7 +88,7 @@ _This version does not introduce any user-facing changes._
78
88
 
79
89
  ### 🐛 Bug fixes
80
90
 
81
- - Fixed *with-node.sh* doesn't keep quotes when passing arguments to Node.js and caused build errors when there are spaces in target name. ([#18741](https://github.com/expo/expo/pull/18741) by [@kudo](https://github.com/kudo))
91
+ - Fixed _with-node.sh_ doesn't keep quotes when passing arguments to Node.js and caused build errors when there are spaces in target name. ([#18741](https://github.com/expo/expo/pull/18741) by [@kudo](https://github.com/kudo))
82
92
 
83
93
  ## 2.1.0 — 2022-08-04
84
94
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "expo-module-scripts",
3
- "version": "3.1.1",
3
+ "version": "3.2.0",
4
4
  "description": "A private package for various tasks for Expo module packages like compiling and testing",
5
5
  "main": "index.js",
6
6
  "bin": {
@@ -29,9 +29,9 @@
29
29
  "@babel/cli": "^7.1.2",
30
30
  "@expo/npm-proofread": "^1.0.1",
31
31
  "@testing-library/react-hooks": "^7.0.1",
32
- "@tsconfig/node14": "^1.0.3",
32
+ "@tsconfig/node18": "^18.2.2",
33
33
  "@types/jest": "^29.2.1",
34
- "babel-preset-expo": "~9.7.0",
34
+ "babel-preset-expo": "~9.8.0",
35
35
  "commander": "^2.19.0",
36
36
  "eslint-config-universe": "^12.0.0",
37
37
  "find-yarn-workspace-root": "^2.0.0",
@@ -41,5 +41,5 @@
41
41
  "ts-jest": "~29.0.4",
42
42
  "typescript": "^5.1.3"
43
43
  },
44
- "gitHead": "62f76105dfb436f7144440d6e6077d4ff3263842"
44
+ "gitHead": "da25937e2a99661cbe5eb60ca1d8d6245fc96a50"
45
45
  }
@@ -2,7 +2,7 @@
2
2
  "compilerOptions": {
3
3
  "target": "esnext",
4
4
  "lib": ["dom", "esnext"],
5
- "jsx": "react",
5
+ "jsx": "react-native",
6
6
  "moduleResolution": "node",
7
7
  "esModuleInterop": true,
8
8
  "types": ["jest", "jest-require"],