-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle.kts
46 lines (39 loc) · 1.15 KB
/
build.gradle.kts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
plugins {
kotlin("js") version "1.6.21"
}
group = "org.example"
version = "1.0-SNAPSHOT"
repositories {
mavenCentral()
}
dependencies {
implementation(kotlin("stdlib-js"))
implementation("io.arrow-kt:arrow-core:1.1.3-alpha.39")
implementation("io.arrow-kt:arrow-optics:1.1.3-alpha.39")
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.6.1")
implementation("io.arrow-kt:arrow-fx-coroutines:1.1.3-alpha.39")
testImplementation("io.kotest:kotest-property:5.3.0")
testImplementation("io.kotest:kotest-assertions-core:5.3.0")
testImplementation("io.kotest.extensions:kotest-assertions-arrow:1.2.5")
testImplementation("io.kotest.extensions:kotest-property-arrow:1.2.5") // optional
testImplementation("io.kotest.extensions:kotest-property-arrow-optics:1.2.5") // optional
}
kotlin {
js(IR) {
browser {
webpackTask {
cssSupport.enabled = true
}
runTask {
cssSupport.enabled = true
}
testTask {
useKarma {
useChromeHeadless()
webpackConfig.cssSupport.enabled = true
}
}
}
binaries.executable()
}
}