2020-10-11 05:48:38 +08:00
|
|
|
plugins {
|
2021-07-25 02:13:02 +08:00
|
|
|
id("world.phantasmal.js")
|
2020-10-11 05:48:38 +08:00
|
|
|
}
|
|
|
|
|
2024-07-17 03:47:47 +08:00
|
|
|
kotlin {
|
|
|
|
sourceSets {
|
|
|
|
getByName("jsMain") {
|
|
|
|
dependencies {
|
|
|
|
api(project(":core"))
|
|
|
|
api(project(":cell"))
|
|
|
|
implementation(npm("@fortawesome/fontawesome-svg-core", "^1.2.36"))
|
|
|
|
implementation(npm("@fortawesome/free-regular-svg-icons", "^5.15.4"))
|
|
|
|
implementation(npm("@fortawesome/free-solid-svg-icons", "^5.15.4"))
|
|
|
|
implementation(npm("@fortawesome/free-brands-svg-icons", "^5.15.4"))
|
|
|
|
}
|
|
|
|
}
|
2020-10-11 05:48:38 +08:00
|
|
|
|
2024-07-17 03:47:47 +08:00
|
|
|
getByName("jsTest") {
|
|
|
|
dependencies {
|
|
|
|
implementation(project(":test-utils"))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-10-11 05:48:38 +08:00
|
|
|
}
|