diff --git a/kotest-assertions-arrow-fx-coroutines/build.gradle.kts b/kotest-assertions-arrow-fx-coroutines/build.gradle.kts index 6f4a6ef..328fbb7 100644 --- a/kotest-assertions-arrow-fx-coroutines/build.gradle.kts +++ b/kotest-assertions-arrow-fx-coroutines/build.gradle.kts @@ -21,6 +21,12 @@ kotlin { } } + jsMain { + dependencies { + api(libs.arrow.fx.coroutines) + } + } + nativeMain { dependencies { implementation(libs.arrow.fx.coroutines) diff --git a/kotest-assertions-arrow/build.gradle.kts b/kotest-assertions-arrow/build.gradle.kts index ed6ca1b..411dd3d 100644 --- a/kotest-assertions-arrow/build.gradle.kts +++ b/kotest-assertions-arrow/build.gradle.kts @@ -19,6 +19,12 @@ kotlin { } } + jsMain { + dependencies { + api(libs.arrow.core) + } + } + nativeMain { dependencies { implementation(libs.arrow.core) diff --git a/kotest-property-arrow-optics/build.gradle.kts b/kotest-property-arrow-optics/build.gradle.kts index 6e0044b..98520f6 100644 --- a/kotest-property-arrow-optics/build.gradle.kts +++ b/kotest-property-arrow-optics/build.gradle.kts @@ -27,6 +27,12 @@ kotlin { } } + jsMain { + dependencies { + api(libs.arrow.optics) + } + } + nativeMain { dependencies { implementation(libs.arrow.optics) diff --git a/kotest-property-arrow/build.gradle.kts b/kotest-property-arrow/build.gradle.kts index ceaeb00..fd766f1 100644 --- a/kotest-property-arrow/build.gradle.kts +++ b/kotest-property-arrow/build.gradle.kts @@ -23,6 +23,12 @@ kotlin { } } + jsMain { + dependencies { + api(libs.arrow.core) + } + } + nativeMain { dependencies { implementation(libs.arrow.core)