summaryrefslogtreecommitdiff
path: root/sw-ui/build.gradle.kts
diff options
context:
space:
mode:
authorJoffrey Bion <joffrey.bion@gmail.com>2021-04-04 02:53:54 +0200
committerJoffrey Bion <joffrey.bion@gmail.com>2021-04-04 02:53:54 +0200
commita782959d337a19c7513627eab33a36034b71cbc0 (patch)
tree06e9ac335d094eedb98992f790863855c9f0cab0 /sw-ui/build.gradle.kts
parentUpgrade JS wrapper libraries & repositories (diff)
downloadseven-wonders-a782959d337a19c7513627eab33a36034b71cbc0.tar.gz
seven-wonders-a782959d337a19c7513627eab33a36034b71cbc0.tar.bz2
seven-wonders-a782959d337a19c7513627eab33a36034b71cbc0.zip
Extract blueprintjs to an independent library
Diffstat (limited to 'sw-ui/build.gradle.kts')
-rw-r--r--sw-ui/build.gradle.kts9
1 files changed, 7 insertions, 2 deletions
diff --git a/sw-ui/build.gradle.kts b/sw-ui/build.gradle.kts
index 3031c7a6..9965ce85 100644
--- a/sw-ui/build.gradle.kts
+++ b/sw-ui/build.gradle.kts
@@ -47,8 +47,13 @@ kotlin {
implementation(npm("styled-components", styledComponentsVersion))
implementation(npm("inline-style-prefixer", "6.0.0"))
- implementation(npm("@blueprintjs/core", "3.38.1"))
- implementation(npm("@blueprintjs/icons", "3.24.0"))
+ val bpCoreVersion = "3.42.0"
+ val bpIconsVersion = "3.26.0"
+ val bpWrapperVersion = "1"
+ implementation("org.hildan.blueprintjs:kotlin-blueprintjs-core:$bpCoreVersion-$bpWrapperVersion")
+ implementation("org.hildan.blueprintjs:kotlin-blueprintjs-icons:$bpIconsVersion-$bpWrapperVersion")
+ implementation(npm("@blueprintjs/core", bpCoreVersion))
+ implementation(npm("@blueprintjs/icons", bpIconsVersion))
}
}
test {
bgstack15