upgrade(docker)

This commit is contained in:
stefan
2025-08-29 12:03:00 +02:00
parent 20788bde91
commit e77c2561dc
3 changed files with 78 additions and 3 deletions
+13
View File
@@ -52,5 +52,18 @@ kotlin {
// Using core testing dependencies for now
}
}
val jsTest by getting {
// Avoid duplicate Skiko runtime files in test processedResources
resources.exclude("**/skiko.*")
resources.exclude("**/skikod8.mjs")
}
}
}
// Avoid overwrite warnings when syncing JS test executable: keep first occurrence of duplicate resources
// Configure the Kotlin JS incremental sync task directly using fully-qualified types (no imports in the middle of the file)
tasks.named<org.jetbrains.kotlin.gradle.targets.js.ir.DefaultIncrementalSyncTask>("jsTestTestDevelopmentExecutableCompileSync").configure {
// Skip copying duplicates that already exist in destination
duplicatesStrategy = org.gradle.api.file.DuplicatesStrategy.EXCLUDE
}