File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -182,6 +182,11 @@ tasks.withType<BootJar> {
182182 requiresUnpack(" **/kotlinx-*.jar" )
183183}
184184
185+ val prepareComposeWasmResources by tasks.registering(Sync ::class ) {
186+ from(composeWasmStaticResources)
187+ into(layout.buildDirectory.dir(" compose-wasm-resources" ))
188+ }
189+
185190val buildLambda by tasks.creating(Zip ::class ) {
186191 val propertyFile = propertyFile
187192
@@ -209,11 +214,6 @@ val buildLambda by tasks.creating(Zip::class) {
209214 dependsOn(prepareComposeWasmResources)
210215}
211216
212- val prepareComposeWasmResources by tasks.registering(Sync ::class ) {
213- from(composeWasmStaticResources)
214- into(layout.buildDirectory.dir(" compose-wasm-resources" ))
215- }
216-
217217tasks.named<Copy >(" processResources" ) {
218218 dependsOn(propertiesGenerator)
219219}
You can’t perform that action at this time.
0 commit comments