From 7a680acb011e38c66e2039cd5d831a49b16546ad Mon Sep 17 00:00:00 2001 From: Igor Yakovlev Date: Wed, 25 Jan 2023 19:03:21 +0100 Subject: Support kotlin wasm target --- core/src/main/kotlin/configuration.kt | 2 ++ 1 file changed, 2 insertions(+) (limited to 'core/src') diff --git a/core/src/main/kotlin/configuration.kt b/core/src/main/kotlin/configuration.kt index 77384ace..71356e67 100644 --- a/core/src/main/kotlin/configuration.kt +++ b/core/src/main/kotlin/configuration.kt @@ -49,6 +49,7 @@ object DokkaDefaults { enum class Platform(val key: String) { jvm("jvm"), js("js"), + wasm("wasm"), native("native"), common("common"); @@ -59,6 +60,7 @@ enum class Platform(val key: String) { return when (key.toLowerCase()) { jvm.key -> jvm js.key -> js + wasm.key -> wasm native.key -> native common.key -> common "androidjvm", "android" -> jvm -- cgit