expo-modules-autolinking 3.0.13 → 3.1.0-canary-20250919-7a31b96
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
|
@@ -6,17 +6,9 @@
|
|
|
6
6
|
|
|
7
7
|
### 🎉 New features
|
|
8
8
|
|
|
9
|
-
### 🐛 Bug fixes
|
|
10
|
-
|
|
11
|
-
### 💡 Others
|
|
12
|
-
|
|
13
|
-
## 3.0.13 — 2025-09-22
|
|
14
|
-
|
|
15
|
-
### 🎉 New features
|
|
16
|
-
|
|
17
9
|
- Use app root to generate modules provider ([#39728](https://github.com/expo/expo/pull/39728) by [@gabrieldonadel](https://github.com/gabrieldonadel))
|
|
18
10
|
|
|
19
|
-
|
|
11
|
+
### 🐛 Bug fixes
|
|
20
12
|
|
|
21
13
|
### 💡 Others
|
|
22
14
|
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import org.jetbrains.kotlin.gradle.dsl.JvmTarget
|
|
1
2
|
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
|
|
2
3
|
|
|
3
4
|
plugins {
|
|
@@ -22,8 +23,8 @@ java {
|
|
|
22
23
|
}
|
|
23
24
|
|
|
24
25
|
tasks.withType<KotlinCompile> {
|
|
25
|
-
|
|
26
|
-
jvmTarget
|
|
26
|
+
compilerOptions {
|
|
27
|
+
jvmTarget.set(JvmTarget.JVM_11)
|
|
27
28
|
}
|
|
28
29
|
}
|
|
29
30
|
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import org.gradle.api.tasks.testing.logging.TestExceptionFormat
|
|
2
|
+
import org.jetbrains.kotlin.gradle.dsl.JvmTarget
|
|
2
3
|
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
|
|
3
4
|
|
|
4
5
|
plugins {
|
|
@@ -27,8 +28,8 @@ java {
|
|
|
27
28
|
}
|
|
28
29
|
|
|
29
30
|
tasks.withType<KotlinCompile> {
|
|
30
|
-
|
|
31
|
-
jvmTarget
|
|
31
|
+
compilerOptions {
|
|
32
|
+
jvmTarget.set(JvmTarget.JVM_11)
|
|
32
33
|
}
|
|
33
34
|
}
|
|
34
35
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "expo-modules-autolinking",
|
|
3
|
-
"version": "3.0
|
|
3
|
+
"version": "3.1.0-canary-20250919-7a31b96",
|
|
4
4
|
"description": "Scripts that autolink Expo modules.",
|
|
5
5
|
"main": "build/index.js",
|
|
6
6
|
"types": "build/index.d.ts",
|
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
"license": "MIT",
|
|
35
35
|
"homepage": "https://github.com/expo/expo/tree/main/packages/expo-modules-autolinking#readme",
|
|
36
36
|
"devDependencies": {
|
|
37
|
-
"expo-module-scripts": "
|
|
37
|
+
"expo-module-scripts": "5.0.8-canary-20250919-7a31b96",
|
|
38
38
|
"memfs": "^3.2.0",
|
|
39
39
|
"minimatch": "^9.0.0"
|
|
40
40
|
},
|
|
@@ -45,6 +45,5 @@
|
|
|
45
45
|
"glob": "^10.4.2",
|
|
46
46
|
"require-from-string": "^2.0.2",
|
|
47
47
|
"resolve-from": "^5.0.0"
|
|
48
|
-
}
|
|
49
|
-
"gitHead": "6523053d0d997d2a21f580d2752b2f873c122038"
|
|
48
|
+
}
|
|
50
49
|
}
|