diff options
author | jbion <joffrey.bion@amadeus.com> | 2019-07-08 20:39:02 +0200 |
---|---|---|
committer | Joffrey Bion <joffrey.bion@gmail.com> | 2019-08-01 23:01:48 +0200 |
commit | 95f5ffe13a874a397a22e822a00218d3f82e84eb (patch) | |
tree | f0c37b229e1dd93d82f2155f3d747b37dfa25a8c /sw-client/build.gradle.kts | |
parent | Attempt at Kotlin frontend plugin (diff) | |
download | seven-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/build.gradle.kts')
-rw-r--r-- | sw-client/build.gradle.kts | 4 |
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 { |