Modified outputDirectory paths in build scripts and upgraded the Kotlin multiplatform plugin to version 2.1.20. Added a new buildJS task to handle copying files from multiple directories into the web folder. These changes streamline the build process and ensure compatibility with updated tooling.
11 lines
202 B
Kotlin
11 lines
202 B
Kotlin
pluginManagement {
|
|
plugins {
|
|
kotlin("multiplatform") version "2.1.20"
|
|
}
|
|
repositories {
|
|
gradlePluginPortal()
|
|
mavenCentral()
|
|
maven { setUrl("https://plugins.gradle.org/m2/") }
|
|
}
|
|
}
|