expo-dev-menu-interface 1.6.0 → 1.7.1

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.
@@ -3,7 +3,7 @@ apply plugin: 'kotlin-android'
3
3
  apply plugin: 'maven-publish'
4
4
 
5
5
  group = 'host.exp.exponent'
6
- version = '1.6.0'
6
+ version = '1.7.1'
7
7
 
8
8
  def expoModulesCorePlugin = new File(project(":expo-modules-core").projectDir.absolutePath, "ExpoModulesCorePlugin.gradle")
9
9
  if (expoModulesCorePlugin.exists()) {
@@ -80,7 +80,7 @@ android {
80
80
  namespace "expo.interfaces.devmenu"
81
81
  defaultConfig {
82
82
  versionCode 6
83
- versionName '1.6.0'
83
+ versionName '1.7.1'
84
84
  }
85
85
  publishing {
86
86
  singleVariant("release") {
@@ -8,5 +8,5 @@ enum class DevMenuItemImportance(val value: Int) {
8
8
  LOW(-100),
9
9
  MEDIUM(0),
10
10
  HIGH(100),
11
- HIGHEST(200);
11
+ HIGHEST(200)
12
12
  }
@@ -4,7 +4,7 @@ import Nimble
4
4
  @testable import EXDevMenuInterface
5
5
 
6
6
  class DevMenuActionTest: QuickSpec {
7
- override func spec() {
7
+ override class func spec() {
8
8
  it("Action should be serializable") {
9
9
  let action = DevMenuAction(withId: "action-1", {})
10
10
  action.isAvailable = { true }
@@ -4,7 +4,7 @@ import Nimble
4
4
  @testable import EXDevMenuInterface
5
5
 
6
6
  class DevMenuItemsContainerTest: QuickSpec {
7
- override func spec() {
7
+ override class func spec() {
8
8
  it("should respect importance") {
9
9
  let container = DevMenuItemsContainer()
10
10
 
@@ -4,7 +4,7 @@ import Nimble
4
4
  @testable import EXDevMenuInterface
5
5
 
6
6
  class DevMenuLinkTest: QuickSpec {
7
- override func spec() {
7
+ override class func spec() {
8
8
  it("Link should be serializable") {
9
9
  let link = DevMenuLink(withTarget: "target-1")
10
10
  link.glyphName = { "link-1-glyph" }
@@ -4,7 +4,7 @@ import Nimble
4
4
  @testable import EXDevMenuInterface
5
5
 
6
6
  class DevMenuScreenTest: QuickSpec {
7
- override func spec() {
7
+ override class func spec() {
8
8
  it("Screen should be serializable") {
9
9
  let screen = DevMenuScreen("screen-1")
10
10
 
@@ -4,7 +4,7 @@ import Nimble
4
4
  @testable import EXDevMenuInterface
5
5
 
6
6
  class DevMenuSelectionListTest: QuickSpec {
7
- override func spec() {
7
+ override class func spec() {
8
8
  it("List should be serializable") {
9
9
  let list = DevMenuSelectionList()
10
10
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "expo-dev-menu-interface",
3
- "version": "1.6.0",
3
+ "version": "1.7.1",
4
4
  "description": "Interface for expo-dev-menu",
5
5
  "main": "index.js",
6
6
  "keywords": [
@@ -25,5 +25,5 @@
25
25
  "peerDependencies": {
26
26
  "expo": "*"
27
27
  },
28
- "gitHead": "3142a086578deffd8704a8f1b6f0f661527d836c"
28
+ "gitHead": "43f1b4f8a5a9bca649e4e7ca6e4155482a162431"
29
29
  }