expo-module-scripts 3.1.0 → 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 +15 -1
- package/package.json +4 -4
- package/tsconfig.base.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -10,6 +10,20 @@
|
|
|
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
|
+
|
|
23
|
+
## 3.1.1 — 2023-09-18
|
|
24
|
+
|
|
25
|
+
_This version does not introduce any user-facing changes._
|
|
26
|
+
|
|
13
27
|
## 3.1.0 — 2023-08-02
|
|
14
28
|
|
|
15
29
|
_This version does not introduce any user-facing changes._
|
|
@@ -74,7 +88,7 @@ _This version does not introduce any user-facing changes._
|
|
|
74
88
|
|
|
75
89
|
### 🐛 Bug fixes
|
|
76
90
|
|
|
77
|
-
- Fixed
|
|
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))
|
|
78
92
|
|
|
79
93
|
## 2.1.0 — 2022-08-04
|
|
80
94
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "expo-module-scripts",
|
|
3
|
-
"version": "3.
|
|
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/
|
|
32
|
+
"@tsconfig/node18": "^18.2.2",
|
|
33
33
|
"@types/jest": "^29.2.1",
|
|
34
|
-
"babel-preset-expo": "~9.
|
|
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": "
|
|
44
|
+
"gitHead": "da25937e2a99661cbe5eb60ca1d8d6245fc96a50"
|
|
45
45
|
}
|