diff options
Diffstat (limited to 'integration-tests/gradle')
-rw-r--r-- | integration-tests/gradle/projects/it-multiplatform-0/build.gradle.kts | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/integration-tests/gradle/projects/it-multiplatform-0/build.gradle.kts b/integration-tests/gradle/projects/it-multiplatform-0/build.gradle.kts index aded7b15..52aa9d36 100644 --- a/integration-tests/gradle/projects/it-multiplatform-0/build.gradle.kts +++ b/integration-tests/gradle/projects/it-multiplatform-0/build.gradle.kts @@ -11,6 +11,7 @@ kotlin { jvm() linuxX64("linux") macosX64("macos") + js() sourceSets { named("commonMain") { dependencies { @@ -26,5 +27,6 @@ tasks.withType<DokkaTask> { create("jvmMain") create("linuxMain") create("macosMain") + create("jsMain") } } |