expo-module-scripts 2.1.0 → 2.1.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
+ ## 2.1.1 — 2022-08-22
14
+
15
+ ### 🐛 Bug fixes
16
+
17
+ - 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))
18
+
13
19
  ## 2.1.0 — 2022-08-04
14
20
 
15
21
  ### 🎉 New features
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "expo-module-scripts",
3
- "version": "2.1.0",
3
+ "version": "2.1.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": {
@@ -42,5 +42,5 @@
42
42
  "ts-jest": "~26.3.0",
43
43
  "typescript": "^4.3.5"
44
44
  },
45
- "gitHead": "8074a07eb9b07884f66c88cd7001376a9c28ca96"
45
+ "gitHead": "f2136cdc98ea6595298d01900861d649bcc6cae1"
46
46
  }
@@ -40,5 +40,5 @@ fi
40
40
 
41
41
  # Execute argument, if present
42
42
  if [[ "$#" -gt 0 ]]; then
43
- "$NODE_BINARY" $@
43
+ "$NODE_BINARY" "$@"
44
44
  fi