diff options
author | Joffrey Bion <joffrey.bion@booking.com> | 2020-05-22 15:30:07 +0200 |
---|---|---|
committer | Joffrey Bion <joffrey.bion@booking.com> | 2020-05-22 16:00:11 +0200 |
commit | d509975f447737bab82fb5a6988a4f44511edf7e (patch) | |
tree | 5f4880e594b17430b9d8d9856429b90997ab1eb3 | |
parent | Move sayReadyButton declaration to a more logical spot (diff) | |
download | seven-wonders-d509975f447737bab82fb5a6988a4f44511edf7e.tar.gz seven-wonders-d509975f447737bab82fb5a6988a4f44511edf7e.tar.bz2 seven-wonders-d509975f447737bab82fb5a6988a4f44511edf7e.zip |
Upgrade Kotlin, react, and blueprintjs versions
-rw-r--r-- | build.gradle.kts | 2 | ||||
-rw-r--r-- | sw-ui/build.gradle.kts | 8 |
2 files changed, 5 insertions, 5 deletions
diff --git a/build.gradle.kts b/build.gradle.kts index 162aa2dc..ef4f43fd 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -1,5 +1,5 @@ plugins { - val kotlinVersion = "1.3.71" + val kotlinVersion = "1.3.72" kotlin("js") version kotlinVersion apply false kotlin("jvm") version kotlinVersion apply false kotlin("multiplatform") version kotlinVersion apply false diff --git a/sw-ui/build.gradle.kts b/sw-ui/build.gradle.kts index e05a2f3b..78aa9d6b 100644 --- a/sw-ui/build.gradle.kts +++ b/sw-ui/build.gradle.kts @@ -10,7 +10,7 @@ repositories { maven(url = "https://kotlin.bintray.com/kotlin-js-wrappers") } -val kotlinWrappersVersion = "pre.93-kotlin-1.3.70" +val kotlinWrappersVersion = "pre.105-kotlin-1.3.72" kotlin { target { @@ -23,7 +23,7 @@ kotlin { implementation(kotlin("stdlib-js")) implementation(project(":sw-client")) - val reactVersion = "16.13.0" + val reactVersion = "16.13.1" implementation("org.jetbrains:kotlin-react:$reactVersion-$kotlinWrappersVersion") implementation(npm("react", reactVersion)) implementation("org.jetbrains:kotlin-react-dom:$reactVersion-$kotlinWrappersVersion") @@ -34,7 +34,7 @@ kotlin { implementation(npm("react-redux", reactReduxVersion)) implementation(npm("redux", "4.0.4")) - val reactRouterDomVersion = "4.3.1" + val reactRouterDomVersion = "5.1.2" implementation("org.jetbrains:kotlin-react-router-dom:$reactRouterDomVersion-$kotlinWrappersVersion") implementation(npm("react-router-dom", reactRouterDomVersion)) @@ -45,7 +45,7 @@ kotlin { // seems to be required by "kotlin-extensions" JS lib implementation(npm("core-js", "3.1.4")) - implementation(npm("@blueprintjs/core", "3.24.0")) + implementation(npm("@blueprintjs/core", "3.26.1")) implementation(npm("@blueprintjs/icons", "3.14.0")) } } |