Skip to content

Commit

Permalink
Microfix #2
Browse files Browse the repository at this point in the history
  • Loading branch information
ilgonmic committed Jan 21, 2025
1 parent 443b465 commit 36fb805
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 1 deletion.
5 changes: 5 additions & 0 deletions cache-maker/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -86,3 +86,8 @@ kotlinComposeWasmStdlibTypeInfo.outgoing.variants.create("typeinfo") {
builtBy(prepareTypeInfoIntoComposeWasmCache)
}
}

// we don't need to build cache-maker
tasks.named("build") {
dependsOn.clear()
}
8 changes: 7 additions & 1 deletion resource-server/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,13 @@ val composeWasmPropertiesUpdater by tasks.registering(ComposeWasmPropertiesUpdat
val applicationProperties = applicationPropertiesFile.absolutePath
propertiesPath.set(applicationProperties)

typeInfoFile.set(kotlinComposeWasmStdlibTypeInfo.singleFile)
val composeWasmStdlibTypeInfo: FileCollection = kotlinComposeWasmStdlibTypeInfo

typeInfoFile.fileProvider(
provider {
composeWasmStdlibTypeInfo.singleFile
}
)

if (!applicationPropertiesFile.exists()) {
applicationPropertiesFile.createNewFile()
Expand Down

0 comments on commit 36fb805

Please sign in to comment.