expo-module-scripts 3.4.0 → 3.4.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 CHANGED
@@ -10,6 +10,12 @@
10
10
 
11
11
  ### 💡 Others
12
12
 
13
+ ## 3.4.1 — 2024-02-01
14
+
15
+ ### 🐛 Bug fixes
16
+
17
+ - Use `node18` tsconfig in `expo-module-scripts` to match the dependencies. ([#26738](https://github.com/expo/expo/pull/26738)) by ([@krystofwoldrich](https://github.com/krystofwoldrich))
18
+
13
19
  ## 3.4.0 — 2023-12-12
14
20
 
15
21
  ### 🎉 New features
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "expo-module-scripts",
3
- "version": "3.4.0",
3
+ "version": "3.4.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": {
@@ -45,5 +45,5 @@
45
45
  "ts-jest": "~29.0.4",
46
46
  "typescript": "^5.1.3"
47
47
  },
48
- "gitHead": "6aca7ce098ddc667776a3d7cf612adbb985e264a"
48
+ "gitHead": "9e4890b069b18598ea429734b5114b40e3afeabb"
49
49
  }
@@ -1,5 +1,5 @@
1
1
  {
2
- "extends": "@tsconfig/node14/tsconfig.json",
2
+ "extends": "@tsconfig/node18/tsconfig.json",
3
3
  "compilerOptions": {
4
4
  "declaration": true
5
5
  }