diff --git a/Dockerfile b/Dockerfile index 0a141868..61df21cd 100644 --- a/Dockerfile +++ b/Dockerfile @@ -37,6 +37,7 @@ COPY --from=build /kotlin-compiler-server/executor.policy /kotlin-compiler-serve COPY --from=build /kotlin-compiler-server/indexes.json /kotlin-compiler-server/ COPY --from=build /kotlin-compiler-server/indexesJs.json /kotlin-compiler-server/ COPY --from=build /kotlin-compiler-server/indexesWasm.json /kotlin-compiler-server/ +COPY --from=build /kotlin-compiler-server/indexesComposeWasm.json /kotlin-compiler-server/ ENV PORT=8080 diff --git a/build.gradle.kts b/build.gradle.kts index f1528bb2..2c6da356 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -22,10 +22,6 @@ plugins { apply() -// for new Wasm opcodes -the().nodeVersion = "21.0.0-v8-canary202309167e82ab1fa2" -the().nodeDownloadBaseUrl = "https://nodejs.org/download/v8-canary" - allprojects { repositories { mavenCentral() @@ -154,6 +150,7 @@ val buildLambda by tasks.creating(Zip::class) { from(indexes) from(indexesJs) from(indexesWasm) + from(indexesComposeWasm) from(libJSFolder) { into(libJS) } from(libWasmFolder) { into(libWasm) } from(libComposeWasmFolder) { into(libComposeWasm) } @@ -179,7 +176,7 @@ tasks.withType { doFirst { this@withType.environment( "kotlin.wasm.node.path", - rootProject.the().requireConfigured().nodeExecutable + rootProject.the().requireConfigured().executable ) } }