Fix demo package name to ensure proper package resolution

This commit is contained in:
Alexander Nozik 2023-06-27 20:30:29 +03:00
parent ea9d37b9a1
commit 25c3a19eed
2 changed files with 3 additions and 1 deletions

View File

@ -2,6 +2,8 @@ plugins {
id("space.kscience.gradle.mpp") id("space.kscience.gradle.mpp")
} }
group = "demo"
kscience { kscience {
jvm() jvm()
js { js {

View File

@ -10,7 +10,7 @@ kscience {
api("org.jetbrains.kotlin-wrappers:kotlin-styled") api("org.jetbrains.kotlin-wrappers:kotlin-styled")
api("org.jetbrains.kotlin-wrappers:kotlin-react-dom") api("org.jetbrains.kotlin-wrappers:kotlin-react-dom")
// implementation(npm("react-select","4.3.0")) // implementation(npm("react-select","4.3.0"))
implementation(projects.visionforgeThreejs) api(projects.visionforgeThreejs)
} }
} }
} }