summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjoffrey-bion <joffrey.bion@gmail.com>2021-01-30 00:31:27 +0100
committerjoffrey-bion <joffrey.bion@gmail.com>2021-01-30 00:31:27 +0100
commit801735c154a005d0243347b7376675fbe4437cb5 (patch)
tree38643edb72b98599dc9a85c01359bfced102a144
parentUpgrade Kotlin to 1.4.21 and corresponding UI deps (diff)
downloadseven-wonders-801735c154a005d0243347b7376675fbe4437cb5.tar.gz
seven-wonders-801735c154a005d0243347b7376675fbe4437cb5.tar.bz2
seven-wonders-801735c154a005d0243347b7376675fbe4437cb5.zip
Remove unnecessary core-js npm dependency
-rw-r--r--sw-ui/build.gradle.kts3
1 files changed, 0 insertions, 3 deletions
diff --git a/sw-ui/build.gradle.kts b/sw-ui/build.gradle.kts
index dc95896e..f57631c9 100644
--- a/sw-ui/build.gradle.kts
+++ b/sw-ui/build.gradle.kts
@@ -43,9 +43,6 @@ kotlin {
implementation(npm("styled-components", styledComponentsVersion))
implementation(npm("inline-style-prefixer", "6.0.0"))
- // seems to be required by "kotlin-extensions" JS lib
- implementation(npm("core-js", "3.1.4"))
-
implementation(npm("@blueprintjs/core", "3.26.1"))
implementation(npm("@blueprintjs/icons", "3.14.0"))
}
bgstack15