visionforge/visionforge-tables/build.gradle.kts

27 lines
514 B
Plaintext
Raw Normal View History

2022-01-07 12:29:43 +03:00
plugins {
2022-08-12 22:16:06 +03:00
id("space.kscience.gradle.mpp")
2022-01-07 12:29:43 +03:00
}
val tablesVersion = "0.3.0"
2022-01-07 12:29:43 +03:00
kscience {
2023-05-14 18:33:30 +03:00
jvm()
2022-01-07 12:29:43 +03:00
js {
useCommonJs()
binaries.library()
}
2023-12-18 09:41:05 +03:00
useSerialization()
commonMain {
2023-05-14 18:33:30 +03:00
api(projects.visionforgeCore)
api("space.kscience:tables-kt:${tablesVersion}")
2022-01-07 12:29:43 +03:00
}
2023-12-18 09:41:05 +03:00
jsMain {
2023-11-13 21:45:37 +03:00
implementation(npm("tabulator-tables", "5.5.2"))
implementation(npm("@types/tabulator-tables", "5.5.3"))
2023-05-14 18:33:30 +03:00
}
2022-01-07 12:29:43 +03:00
}
2023-07-19 22:25:32 +03:00
readme {
2022-08-12 22:16:06 +03:00
maturity = space.kscience.gradle.Maturity.PROTOTYPE
2022-01-07 12:29:43 +03:00
}