Skip to content

Commit

Permalink
Added browser and nodejs wasm support to most modules
Browse files Browse the repository at this point in the history
  • Loading branch information
chRyNaN committed Jan 6, 2024
1 parent 1bd9e6d commit f28e89b
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 4 deletions.
5 changes: 4 additions & 1 deletion colors-core/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,10 @@ kotlin {
}

@OptIn(ExperimentalWasmDsl::class)
wasmJs()
wasmJs {
browser()
nodejs()
}

if (isBuildingOnOSX()) {
iosX64()
Expand Down
5 changes: 4 additions & 1 deletion colors-extension/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,10 @@ kotlin {
}

@OptIn(ExperimentalWasmDsl::class)
wasmJs()
wasmJs {
browser()
nodejs()
}

if (isBuildingOnOSX()) {
iosX64()
Expand Down
5 changes: 4 additions & 1 deletion colors-palette/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,10 @@ kotlin {
}

@OptIn(ExperimentalWasmDsl::class)
wasmJs()
wasmJs {
browser()
nodejs()
}

if (isBuildingOnOSX()) {
iosX64()
Expand Down
5 changes: 4 additions & 1 deletion colors-theme/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,10 @@ kotlin {
}

@OptIn(ExperimentalWasmDsl::class)
wasmJs()
wasmJs {
browser()
nodejs()
}

if (isBuildingOnOSX()) {
iosX64()
Expand Down

0 comments on commit f28e89b

Please sign in to comment.