temporal state

This commit is contained in:
2021-03-02 02:43:30 +06:00
parent aa1756724a
commit 7aa30ef46c
14 changed files with 255 additions and 8 deletions

View File

@@ -1,11 +1,13 @@
project.version = "$version" + System.getenv("additional_version")
project.version = "$version" + (System.getenv("additional_version") != null ? System.getenv("additional_version") : "")
project.group = "$group"
// apply from: "$publishGradlePath"
kotlin {
js (IR) {
browser()
browser {
binaries.executable()
}
nodejs()
}