Skip to content

Commit

Permalink
Fix deps list
Browse files Browse the repository at this point in the history
  • Loading branch information
deusaquilus committed Feb 2, 2024
1 parent 51a78cf commit 70d9954
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 5 deletions.
10 changes: 10 additions & 0 deletions pprint-kotlin-core/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,13 @@ kotlin {
jvm {
jvmToolchain(11)
}
js {
browser()
nodejs()
}

linuxX64()
linuxArm64()
macosX64()
macosArm64()
mingwX64()
Expand All @@ -39,6 +44,11 @@ kotlin {
@OptIn(ExperimentalWasmDsl::class)
wasmJs()

@OptIn(ExperimentalWasmDsl::class)
wasmWasi()
@OptIn(ExperimentalWasmDsl::class)
wasmJs()

js {
browser()
nodejs()
Expand Down
9 changes: 4 additions & 5 deletions pprint-kotlin-kmp/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,10 @@ kotlin {
jvm {
jvmToolchain(11)
}
js {
browser()
nodejs()
}

linuxX64()
linuxArm64()
Expand All @@ -39,11 +43,6 @@ kotlin {
@OptIn(ExperimentalWasmDsl::class)
wasmJs()

js {
browser()
nodejs()
}

sourceSets {
commonMain {
dependencies {
Expand Down

0 comments on commit 70d9954

Please sign in to comment.