expo-modules-core 2.3.5 → 2.3.6
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
package/android/build.gradle
CHANGED
|
@@ -23,7 +23,7 @@ if (KOTLIN_MAJOR_VERSION >= 2) {
|
|
|
23
23
|
}
|
|
24
24
|
|
|
25
25
|
group = 'host.exp.exponent'
|
|
26
|
-
version = '2.3.
|
|
26
|
+
version = '2.3.6'
|
|
27
27
|
|
|
28
28
|
// List of features that are required by linked modules
|
|
29
29
|
def coreFeatures = project.findProperty("coreFeatures") ?: []
|
|
@@ -76,7 +76,7 @@ android {
|
|
|
76
76
|
defaultConfig {
|
|
77
77
|
consumerProguardFiles 'proguard-rules.pro'
|
|
78
78
|
versionCode 1
|
|
79
|
-
versionName "2.3.
|
|
79
|
+
versionName "2.3.6"
|
|
80
80
|
buildConfigField "String", "EXPO_MODULES_CORE_VERSION", "\"${versionName}\""
|
|
81
81
|
buildConfigField "boolean", "IS_NEW_ARCHITECTURE_ENABLED", isNewArchitectureEnabled.toString()
|
|
82
82
|
|
package/expo-module-gradle-plugin/src/main/kotlin/expo/modules/plugin/ProjectConfiguration.kt
CHANGED
|
@@ -16,7 +16,7 @@ import expo.modules.plugin.gradle.ExpoModuleExtension
|
|
|
16
16
|
import org.gradle.api.Project
|
|
17
17
|
import org.gradle.api.publish.PublishingExtension
|
|
18
18
|
import org.gradle.internal.extensions.core.extra
|
|
19
|
-
import java.
|
|
19
|
+
import java.io.File
|
|
20
20
|
|
|
21
21
|
internal fun Project.applyDefaultPlugins() {
|
|
22
22
|
if (!plugins.hasPlugin("com.android.library")) {
|
|
@@ -87,7 +87,7 @@ internal fun Project.applyPublishing(expoModulesExtension: ExpoModuleExtension)
|
|
|
87
87
|
createExpoPublishToMavenLocalTask(publicationInfo, expoModulesExtension)
|
|
88
88
|
|
|
89
89
|
val npmLocalRepositoryRelativePath = "local-maven-repo"
|
|
90
|
-
val npmLocalRepository =
|
|
90
|
+
val npmLocalRepository = File("${project.projectDir.parentFile}/${npmLocalRepositoryRelativePath}").toURI()
|
|
91
91
|
publishingExtension().repositories.mavenLocal { mavenRepo ->
|
|
92
92
|
mavenRepo.name = "NPMPackage"
|
|
93
93
|
mavenRepo.url = npmLocalRepository
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "expo-modules-core",
|
|
3
|
-
"version": "2.3.
|
|
3
|
+
"version": "2.3.6",
|
|
4
4
|
"description": "The core of Expo Modules architecture",
|
|
5
5
|
"main": "src/index.ts",
|
|
6
6
|
"types": "build/index.d.ts",
|
|
@@ -44,5 +44,5 @@
|
|
|
44
44
|
"@testing-library/react-native": "^13.1.0",
|
|
45
45
|
"expo-module-scripts": "^4.1.2"
|
|
46
46
|
},
|
|
47
|
-
"gitHead": "
|
|
47
|
+
"gitHead": "f1394f21ff2719a9a3037d7511db170704e5c492"
|
|
48
48
|
}
|