Skip to content

Commit cf54074

Browse files
author
Patrick Jackson
committed
remove unused package.json
1 parent 2172559 commit cf54074

File tree

4 files changed

+42
-865
lines changed

4 files changed

+42
-865
lines changed

gradle/dependencies.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
ext.versions = [
2-
kotlin : '1.3.30',
2+
kotlin : '1.3.41',
33
dokka : '0.9.17',
44
spek : '2.1.0-alpha.0.9+3d5d865',
55
atrium : '0.8.0'

lib/build.gradle

Lines changed: 38 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ apply plugin: 'kotlin-multiplatform'
77
archivesBaseName = 'redux-kotlin-reselect'
88

99
group 'org.reduxkotlin'
10-
version '0.2.3'
10+
version '0.2.5'
1111

1212
kotlin {
1313
jvm()
@@ -20,20 +20,48 @@ kotlin {
2020
}
2121
}
2222
}
23-
iosArm64("ios")
24-
iosX64("iosSim")
25-
macosX64("macos")
26-
mingwX64("win")
27-
wasm32("wasm")
28-
linuxArm32Hfp("linArm32")
29-
linuxMips32("linMips32")
30-
linuxMipsel32("linMipsel32")
31-
linuxX64("lin64")
23+
//-module-name args are needed to prevent circular deps bug on native platforms
24+
iosArm64("ios") {
25+
compilations.main.extraOpts.addAll(["-module-name", "reselect"])
26+
}
27+
28+
iosX64("iosSim") {
29+
compilations.main.extraOpts.addAll(["-module-name", "reselect"])
30+
}
31+
macosX64("macos") {
32+
compilations.main.extraOpts.addAll(["-module-name", "reselect"])
33+
}
34+
35+
mingwX64("win") {
36+
compilations.main.extraOpts.addAll(["-module-name", "reselect"])
37+
}
38+
39+
wasm32("wasm") {
40+
compilations.main.extraOpts.addAll(["-module-name", "reselect"])
41+
}
42+
43+
linuxArm32Hfp("linArm32") {
44+
compilations.main.extraOpts.addAll(["-module-name", "reselect"])
45+
}
46+
47+
linuxMips32("linMips32") {
48+
compilations.main.extraOpts.addAll(["-module-name", "reselect"])
49+
}
50+
51+
linuxMipsel32("linMipsel32") {
52+
compilations.main.extraOpts.addAll(["-module-name", "reselect"])
53+
}
54+
55+
linuxX64("lin64") {
56+
compilations.main.extraOpts.addAll(["-module-name", "reselect"])
57+
}
58+
3259

3360
sourceSets {
3461
commonMain {
3562
dependencies {
3663
implementation kotlin("stdlib-common")
64+
implementation "org.reduxkotlin:redux-kotlin:0.2.4"
3765
}
3866
}
3967
commonTest {
@@ -44,7 +72,6 @@ kotlin {
4472
implementation "org.spekframework.spek2:spek-dsl-metadata:$project.versions.spek"
4573
implementation "ch.tutteli.atrium:atrium-cc-en_GB-robstoll-common:$project.versions.atrium"
4674
implementation "io.mockk:mockk-common:1.9.3"
47-
implementation "org.reduxkotlin:redux-kotlin:0.2.1"
4875
}
4976
}
5077

0 commit comments

Comments
 (0)