34 lines
735 B
Plaintext
34 lines
735 B
Plaintext
plugins {
|
|
id("space.kscience.gradle.mpp")
|
|
}
|
|
|
|
kscience {
|
|
jvm()
|
|
js()
|
|
native()
|
|
wasm{
|
|
browser {
|
|
testTask {
|
|
useKarma {
|
|
this.webpackConfig.experiments.add("topLevelAwait")
|
|
useChromeHeadless()
|
|
useConfigDirectory(project.projectDir.resolve("karma.config.d").resolve("wasm"))
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
wasmTest{
|
|
dependencies {
|
|
implementation(kotlin("test"))
|
|
}
|
|
}
|
|
}
|
|
|
|
readme {
|
|
maturity = space.kscience.gradle.Maturity.DEVELOPMENT
|
|
description = """
|
|
An API and basic implementation for arranging objects in a continuous memory block.
|
|
""".trimIndent()
|
|
}
|