expo-manifests 0.12.0 → 0.13.0
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
|
@@ -3,7 +3,7 @@ apply plugin: 'kotlin-android'
|
|
|
3
3
|
apply plugin: 'maven-publish'
|
|
4
4
|
|
|
5
5
|
group = 'host.exp.exponent'
|
|
6
|
-
version = '0.
|
|
6
|
+
version = '0.13.0'
|
|
7
7
|
|
|
8
8
|
def expoModulesCorePlugin = new File(project(":expo-modules-core").projectDir.absolutePath, "ExpoModulesCorePlugin.gradle")
|
|
9
9
|
if (expoModulesCorePlugin.exists()) {
|
|
@@ -93,7 +93,7 @@ android {
|
|
|
93
93
|
namespace "expo.modules.manifests"
|
|
94
94
|
defaultConfig {
|
|
95
95
|
versionCode 31
|
|
96
|
-
versionName '0.
|
|
96
|
+
versionName '0.13.0'
|
|
97
97
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
|
98
98
|
}
|
|
99
99
|
testOptions {
|
|
@@ -9,7 +9,7 @@ enum ManifestTestError: Error {
|
|
|
9
9
|
}
|
|
10
10
|
|
|
11
11
|
class BareManifestSpec : ExpoSpec {
|
|
12
|
-
override func spec() {
|
|
12
|
+
override class func spec() {
|
|
13
13
|
describe("instantiation") {
|
|
14
14
|
it("instantiates and reads properties") {
|
|
15
15
|
let manifestJson = "{\"id\":\"0eef8214-4833-4089-9dff-b4138a14f196\",\"commitTime\":1609975977832}"
|
|
@@ -5,7 +5,7 @@ import ExpoModulesTestCore
|
|
|
5
5
|
@testable import EXManifests
|
|
6
6
|
|
|
7
7
|
class LegacyManifestSpec : ExpoSpec {
|
|
8
|
-
override func spec() {
|
|
8
|
+
override class func spec() {
|
|
9
9
|
describe("instantiation") {
|
|
10
10
|
it("instantiates and reads properties") {
|
|
11
11
|
let manifestJson = "{\"sdkVersion\":\"39.0.0\",\"id\":\"@esamelson/native-component-list\",\"releaseId\":\"0eef8214-4833-4089-9dff-b4138a14f196\",\"commitTime\":\"2020-11-11T00:17:54.797Z\",\"bundleUrl\":\"https://classic-assets.eascdn.net/%40esamelson%2Fnative-component-list%2F39.0.0%2F01c86fd863cfee878068eebd40f165df-39.0.0-ios.js\"}"
|
|
@@ -5,7 +5,7 @@ import ExpoModulesTestCore
|
|
|
5
5
|
@testable import EXManifests
|
|
6
6
|
|
|
7
7
|
final class ManifestSpec: ExpoSpec {
|
|
8
|
-
override func spec() {
|
|
8
|
+
override class func spec() {
|
|
9
9
|
describe("getPluginProperties") {
|
|
10
10
|
it("should return nil when plugin is not matched") {
|
|
11
11
|
var manifestJson: [String: Any] = [:]
|
|
@@ -5,7 +5,7 @@ import ExpoModulesTestCore
|
|
|
5
5
|
@testable import EXManifests
|
|
6
6
|
|
|
7
7
|
class NewManifestSpec : ExpoSpec {
|
|
8
|
-
override func spec() {
|
|
8
|
+
override class func spec() {
|
|
9
9
|
describe("instantiation") {
|
|
10
10
|
it("instantiates and reads properties") {
|
|
11
11
|
let manifestJson = "{\"runtimeVersion\":\"1\",\"id\":\"0eef8214-4833-4089-9dff-b4138a14f196\",\"createdAt\":\"2020-11-11T00:17:54.797Z\",\"launchAsset\":{\"url\":\"https://classic-assets.eascdn.net/%40esamelson%2Fnative-component-list%2F39.0.0%2F01c86fd863cfee878068eebd40f165df-39.0.0-ios.js\",\"contentType\":\"application/javascript\"}}"
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "expo-manifests",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.13.0",
|
|
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",
|
|
@@ -35,7 +35,7 @@
|
|
|
35
35
|
},
|
|
36
36
|
"dependencies": {
|
|
37
37
|
"expo-json-utils": "~0.12.0",
|
|
38
|
-
"@expo/config": "~8.
|
|
38
|
+
"@expo/config": "~8.5.0"
|
|
39
39
|
},
|
|
40
40
|
"devDependencies": {
|
|
41
41
|
"expo-module-scripts": "^3.0.0"
|
|
@@ -43,5 +43,5 @@
|
|
|
43
43
|
"peerDependencies": {
|
|
44
44
|
"expo": "*"
|
|
45
45
|
},
|
|
46
|
-
"gitHead": "
|
|
46
|
+
"gitHead": "6aca7ce098ddc667776a3d7cf612adbb985e264a"
|
|
47
47
|
}
|