expo-manifests 0.14.4-canary-20240719-83ee47b → 1.0.0-canary-20240904-69100c1
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
|
@@ -222,7 +222,7 @@ abstract class Manifest(protected val json: JSONObject) {
|
|
|
222
222
|
@Throws(JSONException::class, IllegalArgumentException::class)
|
|
223
223
|
fun getPluginProperties(packageName: String): Map<String, Any>? {
|
|
224
224
|
val pluginsRawValue = getExpoClientConfigRootObject()?.getNullable<JSONArray>("plugins") ?: return null
|
|
225
|
-
val plugins = PluginType.fromRawArrayValue(pluginsRawValue)
|
|
225
|
+
val plugins = PluginType.fromRawArrayValue(pluginsRawValue)
|
|
226
226
|
return plugins.filterIsInstance<PluginType.WithProps>()
|
|
227
227
|
.firstOrNull { it.plugin.first == packageName }
|
|
228
228
|
?.plugin?.second
|
package/ios/EXManifests.podspec
CHANGED
|
@@ -10,7 +10,10 @@ Pod::Spec.new do |s|
|
|
|
10
10
|
s.license = package['license']
|
|
11
11
|
s.author = package['author']
|
|
12
12
|
s.homepage = package['homepage']
|
|
13
|
-
s.platforms = {
|
|
13
|
+
s.platforms = {
|
|
14
|
+
:ios => '15.1',
|
|
15
|
+
:tvos => '15.1'
|
|
16
|
+
}
|
|
14
17
|
s.swift_version = '5.4'
|
|
15
18
|
s.source = { git: 'https://github.com/expo/expo.git' }
|
|
16
19
|
s.static_framework = true
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "expo-manifests",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "1.0.0-canary-20240904-69100c1",
|
|
4
4
|
"description": "Code to parse and use Expo and Expo Updates manifests.",
|
|
5
5
|
"main": "build/Manifests.js",
|
|
6
6
|
"types": "build/Manifests.d.ts",
|
|
@@ -34,14 +34,14 @@
|
|
|
34
34
|
"preset": "expo-module-scripts"
|
|
35
35
|
},
|
|
36
36
|
"dependencies": {
|
|
37
|
-
"@expo/config": "
|
|
38
|
-
"expo-json-utils": "0.
|
|
37
|
+
"@expo/config": "10.0.0-canary-20240904-69100c1",
|
|
38
|
+
"expo-json-utils": "1.0.0-canary-20240904-69100c1"
|
|
39
39
|
},
|
|
40
40
|
"devDependencies": {
|
|
41
|
-
"expo-module-scripts": "3.6.0-canary-
|
|
41
|
+
"expo-module-scripts": "3.6.0-canary-20240904-69100c1"
|
|
42
42
|
},
|
|
43
43
|
"peerDependencies": {
|
|
44
44
|
"expo": "*"
|
|
45
45
|
},
|
|
46
|
-
"gitHead": "
|
|
46
|
+
"gitHead": "69100c1b099b707057c052ed8096e06cb208aca1"
|
|
47
47
|
}
|
package/tsconfig.json
CHANGED