From d509975f447737bab82fb5a6988a4f44511edf7e Mon Sep 17 00:00:00 2001 From: Joffrey Bion Date: Fri, 22 May 2020 15:30:07 +0200 Subject: Upgrade Kotlin, react, and blueprintjs versions --- sw-ui/build.gradle.kts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'sw-ui') 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")) } } -- cgit