diff options
author | aleksZubakov <aleks.zubakov@gmail.com> | 2018-07-12 19:25:51 +0300 |
---|---|---|
committer | aleksZubakov <aleks.zubakov@gmail.com> | 2018-07-12 19:25:51 +0300 |
commit | b4fcc57ab7f335459131ce105924eeaa5fa77375 (patch) | |
tree | f7a6de3af8a4252eb74deea5ca8a18215ff2e25d /integration/src/main/kotlin/org/jetbrains/dokka | |
parent | 960ea9ebb01f280c4966e139c1697f083e9d8965 (diff) | |
download | dokka-b4fcc57ab7f335459131ce105924eeaa5fa77375.tar.gz dokka-b4fcc57ab7f335459131ce105924eeaa5fa77375.tar.bz2 dokka-b4fcc57ab7f335459131ce105924eeaa5fa77375.zip |
Add common platform support
Diffstat (limited to 'integration/src/main/kotlin/org/jetbrains/dokka')
-rw-r--r-- | integration/src/main/kotlin/org/jetbrains/dokka/configuration.kt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/integration/src/main/kotlin/org/jetbrains/dokka/configuration.kt b/integration/src/main/kotlin/org/jetbrains/dokka/configuration.kt index b18e5daf..d1794953 100644 --- a/integration/src/main/kotlin/org/jetbrains/dokka/configuration.kt +++ b/integration/src/main/kotlin/org/jetbrains/dokka/configuration.kt @@ -19,8 +19,8 @@ class UrlSerializer : ValueSerializer<URL?> { enum class Platform(val key: String) { jvm("jvm"), - js("js"); -// common("common"); + js("js"), + common("common"); companion object { @@ -30,7 +30,7 @@ enum class Platform(val key: String) { return when (key.toLowerCase()) { jvm.key -> jvm js.key -> js -// common.key -> common + common.key -> common else -> TODO("write normal exception") } } |