mirror of
https://github.com/DaanVandenBosch/phantasmal-world.git
synced 2025-04-04 06:28:28 +08:00
12 lines
407 B
Plaintext
12 lines
407 B
Plaintext
import org.jetbrains.kotlin.gradle.targets.js.nodejs.NodeJsRootExtension
|
|
import org.jetbrains.kotlin.gradle.targets.js.nodejs.NodeJsRootPlugin
|
|
|
|
tasks.wrapper {
|
|
gradleVersion = "7.1.1"
|
|
}
|
|
|
|
// Temporary fix for issue with incompatible webpack-cli and @webpack-cli versions.
|
|
rootProject.plugins.withType<NodeJsRootPlugin> {
|
|
rootProject.the<NodeJsRootExtension>().versions.webpackCli.version = "4.9.0"
|
|
}
|