summaryrefslogtreecommitdiff
path: root/sw-client
diff options
context:
space:
mode:
authorjbion <joffrey.bion@amadeus.com>2019-07-08 20:39:02 +0200
committerJoffrey Bion <joffrey.bion@gmail.com>2019-08-01 23:01:48 +0200
commit95f5ffe13a874a397a22e822a00218d3f82e84eb (patch)
treef0c37b229e1dd93d82f2155f3d747b37dfa25a8c /sw-client
parentAttempt at Kotlin frontend plugin (diff)
downloadseven-wonders-95f5ffe13a874a397a22e822a00218d3f82e84eb.tar.gz
seven-wonders-95f5ffe13a874a397a22e822a00218d3f82e84eb.tar.bz2
seven-wonders-95f5ffe13a874a397a22e822a00218d3f82e84eb.zip
Attempt at Kotlin/JS EAP build 1.3.50-eap-54
Diffstat (limited to 'sw-client')
-rw-r--r--sw-client/build.gradle.kts4
1 files changed, 3 insertions, 1 deletions
diff --git a/sw-client/build.gradle.kts b/sw-client/build.gradle.kts
index 35cebd82..07e658d0 100644
--- a/sw-client/build.gradle.kts
+++ b/sw-client/build.gradle.kts
@@ -7,7 +7,9 @@ val krossbowVersion = "0.3.1"
kotlin {
jvm()
- js()
+ js {
+ browser() // necessary for local dependency from JS UI module
+ }
sourceSets {
val commonMain by getting {
dependencies {
bgstack15