Add Hsla color functions, v. 0.3.10-SNAPSHOT

This commit is contained in:
2021-02-24 10:57:00 +01:00
parent dedbce0fa0
commit 2928a70728
10 changed files with 482 additions and 83 deletions

View File

@@ -1,12 +1,10 @@
import org.jetbrains.kotlin.fir.declarations.builder.buildResolvedImport
plugins {
kotlin("multiplatform") version "1.4.0-rc"
kotlin("multiplatform") version "1.4.30"
`maven-publish`
}
group = "nl.astraeus"
version = "0.3.6-SNAPSHOT"
version = "0.3.10-SNAPSHOT"
repositories {
maven { setUrl("https://dl.bintray.com/kotlin/kotlin-eap") }
@@ -17,21 +15,36 @@ repositories {
kotlin {
jvm()
js(BOTH) {
browser()
//produceKotlinLibrary()
}
val hostOs = System.getProperty("os.name")
val isMingwX64 = hostOs.startsWith("Windows")
val nativeTarget = when {
hostOs == "Mac OS X" -> macosX64("native")
hostOs == "Linux" -> linuxX64("native")
isMingwX64 -> mingwX64("native")
else -> throw GradleException("Host OS is not supported in Kotlin/Native.")
browser {
testTask {
useKarma {
useFirefox()
//useChrome()
}
}
}
}
sourceSets {
val commonMain by getting {}
val commonMain by getting {
}
val commonTest by getting {
dependencies {
implementation(kotlin("test-common"))
implementation(kotlin("test-annotations-common"))
}
}
val jvmTest by getting {
dependencies {
implementation(kotlin("test-junit"))
}
}
val jsTest by getting {
dependencies {
implementation(kotlin("test-js"))
}
}
}
}
@@ -68,3 +81,4 @@ publishing {
}
}
}