summaryrefslogtreecommitdiff
path: root/sw-ui
diff options
context:
space:
mode:
authorJoffrey Bion <joffrey.bion@booking.com>2020-05-22 15:30:07 +0200
committerJoffrey Bion <joffrey.bion@booking.com>2020-05-22 16:00:11 +0200
commitd509975f447737bab82fb5a6988a4f44511edf7e (patch)
tree5f4880e594b17430b9d8d9856429b90997ab1eb3 /sw-ui
parentMove sayReadyButton declaration to a more logical spot (diff)
downloadseven-wonders-d509975f447737bab82fb5a6988a4f44511edf7e.tar.gz
seven-wonders-d509975f447737bab82fb5a6988a4f44511edf7e.tar.bz2
seven-wonders-d509975f447737bab82fb5a6988a4f44511edf7e.zip
Upgrade Kotlin, react, and blueprintjs versions
Diffstat (limited to 'sw-ui')
-rw-r--r--sw-ui/build.gradle.kts8
1 files changed, 4 insertions, 4 deletions
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"))
}
}
bgstack15