Skip to content

Commit

Permalink
Microfix #2
Browse files Browse the repository at this point in the history
ilgonmic committed Jan 21, 2025

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
1 parent 443b465 commit 36fb805
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
@@ -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
@@ -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()

0 comments on commit 36fb805

Please sign in to comment.