Skip to content

Commit 62bf9e5

Browse files
committed
Fix transitive dep not getting loaded in kotlin-js #204
1 parent 7a20a39 commit 62bf9e5

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

build.gradle

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ plugins {
1212

1313
allprojects {
1414
group 'com.willowtreeapps.assertk'
15-
version '0.16'
15+
version '0.17-SNAPSHOT'
1616
}
1717

1818
ext {
@@ -92,6 +92,9 @@ kotlin {
9292
}
9393
jsMain {
9494
dependencies {
95+
// kotlin-js doesn't handle this as a transitive dep correctly
96+
// when it's scoped as runtime.
97+
api 'com.willowtreeapps.opentest4k:opentest4k-js:1.1.2'
9598
implementation kotlin('stdlib-js')
9699
}
97100
}

0 commit comments

Comments
 (0)