expo-module-scripts 3.0.2 → 3.0.4

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,14 @@
10
10
 
11
11
  ### 💡 Others
12
12
 
13
+ ## 3.0.4 — 2022-11-22
14
+
15
+ _This version does not introduce any user-facing changes._
16
+
17
+ ## 3.0.3 — 2022-11-02
18
+
19
+ _This version does not introduce any user-facing changes._
20
+
13
21
  ## 3.0.2 — 2022-10-30
14
22
 
15
23
  ### 💡 Others
package/README.md CHANGED
@@ -156,15 +156,7 @@ The Jest preset extends [`jest-expo`](https://github.com/expo/expo/tree/main/pac
156
156
  }
157
157
  ```
158
158
 
159
- **For unit testing component-based modules:**
160
-
161
- ```json
162
- {
163
- "jest": {
164
- "preset": "expo-module-scripts/enzyme"
165
- }
166
- }
167
- ```
159
+ **For unit testing component-based modules** use @testing-library/react and @testing-library/react-native.
168
160
 
169
161
  ### 📝 LICENSE
170
162
 
package/bin/npx CHANGED
@@ -5,7 +5,7 @@
5
5
 
6
6
  # shellcheck disable=SC2154
7
7
  if [[ ! "$npm_config_user_agent" =~ yarn ]]; then
8
- yarn exec --silent -- npx "$@"
8
+ yarn exec -- npx "$@"
9
9
  else
10
10
  npx "$@"
11
11
  fi
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "expo-module-scripts",
3
- "version": "3.0.2",
3
+ "version": "3.0.4",
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": {
@@ -41,5 +41,5 @@
41
41
  "ts-jest": "~26.3.0",
42
42
  "typescript": "^4.3.5"
43
43
  },
44
- "gitHead": "779ad6af070d07a14f371e3106f02ddd1b093538"
44
+ "gitHead": "944518937c366466608634c7ccd6177d2b4688b2"
45
45
  }