diff options
author | sebastian.sellmair <sebastian.sellmair@jetbrains.com> | 2020-07-31 17:16:59 +0200 |
---|---|---|
committer | Sebastian Sellmair <34319766+sellmair@users.noreply.github.com> | 2020-07-31 17:54:04 +0200 |
commit | 6142f5996021eb7199f520bdeb5243321edd65f9 (patch) | |
tree | cb8d1e904fac9fd7e3bcf895adc4ca312140fab5 | |
parent | c65c2b000b6ec31858254fc6045f9021a0be340a (diff) | |
download | dokka-6142f5996021eb7199f520bdeb5243321edd65f9.tar.gz dokka-6142f5996021eb7199f520bdeb5243321edd65f9.tar.bz2 dokka-6142f5996021eb7199f520bdeb5243321edd65f9.zip |
Add js target back to Multiplatform0GradleIntegrationTest
-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") } } |