expo-modules-autolinking 1.1.0 → 1.1.2
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,16 @@
|
|
|
10
10
|
|
|
11
11
|
### 💡 Others
|
|
12
12
|
|
|
13
|
+
## 1.1.2 — 2023-02-14
|
|
14
|
+
|
|
15
|
+
### 💡 Others
|
|
16
|
+
|
|
17
|
+
- Suppress node warnings about deprecated exports mapping in 3rd-party dependencies. ([#21222](https://github.com/expo/expo/pull/21222) by [@tsapeta](https://github.com/tsapeta))
|
|
18
|
+
|
|
19
|
+
## 1.1.1 — 2023-02-09
|
|
20
|
+
|
|
21
|
+
_This version does not introduce any user-facing changes._
|
|
22
|
+
|
|
13
23
|
## 1.1.0 — 2023-02-03
|
|
14
24
|
|
|
15
25
|
_This version does not introduce any user-facing changes._
|
package/README.md
CHANGED
|
@@ -1,4 +1,11 @@
|
|
|
1
|
-
|
|
1
|
+
<p>
|
|
2
|
+
<a href="https://docs.expo.dev/modules/autolinking/">
|
|
3
|
+
<img
|
|
4
|
+
src="../../.github/resources/expo-modules-autolinking.svg"
|
|
5
|
+
alt="expo-modules-autolinking"
|
|
6
|
+
height="64" />
|
|
7
|
+
</a>
|
|
8
|
+
</p>
|
|
2
9
|
|
|
3
10
|
Scripts that autolink Expo modules.
|
|
4
11
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "expo-modules-autolinking",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.2",
|
|
4
4
|
"description": "Scripts that autolink Expo modules.",
|
|
5
5
|
"main": "build/index.js",
|
|
6
6
|
"types": "build/index.d.ts",
|
|
@@ -48,5 +48,5 @@
|
|
|
48
48
|
"find-up": "^5.0.0",
|
|
49
49
|
"fs-extra": "^9.1.0"
|
|
50
50
|
},
|
|
51
|
-
"gitHead": "
|
|
51
|
+
"gitHead": "c8107d57eabaedff5d53bc8036d062db12a473c8"
|
|
52
52
|
}
|
|
@@ -108,6 +108,7 @@ class ExpoAutolinkingManager {
|
|
|
108
108
|
static private String[] convertOptionsToCommandArgs(String command, Map options) {
|
|
109
109
|
String[] args = [
|
|
110
110
|
'node',
|
|
111
|
+
'--no-warnings',
|
|
111
112
|
'--eval',
|
|
112
113
|
'require(\'expo-modules-autolinking\')(process.argv.slice(1))',
|
|
113
114
|
'--',
|