Skip to content

Commit cd59e87

Browse files
committed
chore: disable useEsClasses due to an error
1 parent c2d22fa commit cd59e87

File tree

4 files changed

+7
-4
lines changed

4 files changed

+7
-4
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ and [Compose Web (wasm)][Compose-Multiplatform] applications.
1515
```bash
1616
# Mac OS
1717
$ curl -s "https://get.sdkman.io" | bash
18-
$ sdk i java 22.ea.2-open
19-
$ sdk u java 22.ea.2-open
18+
$ sdk i java 22.ea-open
19+
$ sdk u java 22.ea-open
2020
```
2121

2222
### Build & Run

gradle/build-logic/common-plugins/src/main/kotlin/common/KotlinExtns.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -199,7 +199,7 @@ fun Test.configureJavaTest() {
199199

200200
context(Project)
201201
fun KotlinJsOptions.configureKotlinJs() {
202-
useEsClasses = true
202+
// useEsClasses = true
203203
// sourceMap = true
204204
// sourceMapEmbedSources = "always"
205205
// freeCompilerArgs += listOf("-Xir-per-module")

gradle/build-logic/common-plugins/src/main/kotlin/plugins/kotlin.mpp.gradle.kts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,8 +124,9 @@ kotlinMultiplatform.apply {
124124
implementation(libs.ktor.client.core)
125125
implementation(libs.ktor.client.logging)
126126
implementation(libs.ktor.client.serialization)
127-
implementation(libs.intellij.markdown)
127+
implementation(libs.ajalt.colormath)
128128
implementation(libs.benasher44.uuid)
129+
implementation(libs.intellij.markdown)
129130
}
130131
}
131132

gradle/libs.versions.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ kotlinx-reflect-lite = "1.0.0"
3434
zip-prefixer = "0.3.1"
3535
ajalt-mordant = "2.0.0"
3636
ajalt-clikt = "4.0.0"
37+
ajalt-colormath = "3.3.1"
3738
classgraph = "4.8.160"
3839
dokka = "1.8.20"
3940
intellij-markdown = "0.4.1"
@@ -146,6 +147,7 @@ rsocket-ktor-client = { module = "io.rsocket.kotlin:rsocket-ktor-client"
146147
rsocket-ktor-server = { module = "io.rsocket.kotlin:rsocket-ktor-server" , version.ref = "rsocket"}
147148

148149
ajalt-mordant = { module = "com.github.ajalt.mordant:mordant" , version.ref = "ajalt-mordant"}
150+
ajalt-colormath = { module = "com.github.ajalt.colormath:colormath" , version.ref = "ajalt-colormath"}
149151
jgit = { module = "org.eclipse.jgit:org.eclipse.jgit" , version.ref = "jgit" }
150152
jte = { module = "gg.jte:jte" , version.ref = "jte" }
151153
jte-runtime = { module = "gg.jte:jte-runtime" , version.ref = "jte" }

0 commit comments

Comments
 (0)