expo-module-scripts 2.1.1 → 3.0.1
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.plugin.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -10,7 +10,21 @@
|
|
|
10
10
|
|
|
11
11
|
### 💡 Others
|
|
12
12
|
|
|
13
|
-
##
|
|
13
|
+
## 3.0.1 — 2022-10-28
|
|
14
|
+
|
|
15
|
+
_This version does not introduce any user-facing changes._
|
|
16
|
+
|
|
17
|
+
## 3.0.0 — 2022-10-25
|
|
18
|
+
|
|
19
|
+
### 🛠 Breaking changes
|
|
20
|
+
|
|
21
|
+
- [plugin] Upgrade minimum runtime requirement to Node 14 (LTS). ([#18204](https://github.com/expo/expo/pull/18204) by [@EvanBacon](https://github.com/EvanBacon))
|
|
22
|
+
|
|
23
|
+
### 💡 Others
|
|
24
|
+
|
|
25
|
+
- Use the correct TSConfig package in dependencies to match one referred in `tsconfig.plugin.json`. ([#19670](https://github.com/expo/expo/pull/19670) by [@Simek](https://github.com/Simek))
|
|
26
|
+
|
|
27
|
+
## 2.1.1 - 2022-08-22
|
|
14
28
|
|
|
15
29
|
### 🐛 Bug fixes
|
|
16
30
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "expo-module-scripts",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "3.0.1",
|
|
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,18 +29,18 @@
|
|
|
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/node14": "^1.0.3",
|
|
33
33
|
"@types/jest": "^26.0.24",
|
|
34
34
|
"babel-preset-expo": "~9.2.0",
|
|
35
35
|
"commander": "^2.19.0",
|
|
36
36
|
"eslint-config-universe": "^11.0.0",
|
|
37
37
|
"find-yarn-workspace-root": "^2.0.0",
|
|
38
38
|
"glob": "^7.1.7",
|
|
39
|
-
"jest-expo": "~
|
|
39
|
+
"jest-expo": "~47.0.0",
|
|
40
40
|
"jest-expo-enzyme": "^1.2.3",
|
|
41
41
|
"jest-watch-typeahead": "0.6.4",
|
|
42
42
|
"ts-jest": "~26.3.0",
|
|
43
43
|
"typescript": "^4.3.5"
|
|
44
44
|
},
|
|
45
|
-
"gitHead": "
|
|
45
|
+
"gitHead": "59081bb17e727b10f2a00cd07bb45cd283a6f6a5"
|
|
46
46
|
}
|
package/tsconfig.plugin.json
CHANGED