We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 70f145f commit 1ad372aCopy full SHA for 1ad372a
cache-maker/build.gradle.kts
@@ -25,10 +25,12 @@ kotlin {
25
val composeWasmStdlib: Provider<Directory> = layout.buildDirectory
26
.dir("compose-wasm-stdlib-output")
27
val composeWasmStdlibTypeInfo: Provider<RegularFile> = composeWasmStdlib
28
- .map { it.file("compose-wasm-stdlib-output/stdlib.typeinfo.bin") }
+ .map { it.file("stdlib.typeinfo.bin") }
29
30
val buildComposeWasmStdlibModule by tasks.registering(Exec::class) {
31
32
+ inputs.files(configurations.named("wasmJsRuntimeClasspath"))
33
+
34
workingDir = rootDir
35
executable = "${project.name}/docker-build-incremental-cache.sh"
36
0 commit comments