mirror of
https://github.com/DaanVandenBosch/phantasmal-world.git
synced 2025-04-03 13:58:28 +08:00
25 lines
710 B
Plaintext
25 lines
710 B
Plaintext
plugins {
|
|
id("world.phantasmal.js")
|
|
}
|
|
|
|
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"))
|
|
}
|
|
}
|
|
|
|
getByName("jsTest") {
|
|
dependencies {
|
|
implementation(project(":test-utils"))
|
|
}
|
|
}
|
|
}
|
|
}
|