Skip to content

Commit 2914dd6

Browse files
authored
Development (#46)
* version bumps * make TsSourceCodeGenerator an interface (so it's easy to override TsSourceCodeGenerator.Default via delegation) * try making maven Publish task run after Sign tasks? * TypeAliasTypingConfig is implemented * don't enable sign task if credentials aren't present
1 parent 135ef6a commit 2914dd6

File tree

4 files changed

+26
-26
lines changed

4 files changed

+26
-26
lines changed

buildSrc/src/main/kotlin/buildsrc/convention/maven-publish.gradle.kts

+7-3
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ tasks.withType<AbstractPublishToMaven>().configureEach {
4141
// Gradle warns about some signing tasks using publishing task outputs without explicit
4242
// dependencies. I'm not going to go through them all and fix them, so here's a quick fix.
4343
dependsOn(tasks.withType<Sign>())
44+
mustRunAfter(tasks.withType<Sign>())
4445

4546
doLast {
4647
logger.lifecycle("[${this.name}] ${project.group}:${project.name}:${project.version}")
@@ -64,9 +65,12 @@ afterEvaluate {
6465
// too early, before all the publications are added.
6566
// Use .all { }, not .configureEach { }, otherwise the signing plugin doesn't create the tasks
6667
// soon enough.
67-
publishing.publications.withType<MavenPublication>().all {
68-
signing.sign(this)
69-
logger.lifecycle("configuring signature for publication ${this.name}")
68+
69+
if (sonatypeRepositoryCredentials.isPresent()) {
70+
publishing.publications.withType<MavenPublication>().all {
71+
signing.sign(this)
72+
logger.lifecycle("configuring signature for publication ${this.name}")
73+
}
7074
}
7175
}
7276

gradle/libs.versions.toml

+4-5
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,12 @@ kotlinCompileTesting = "1.4.8" # https://github.com/tschuchortdev/kotlin
1010

1111
kotlinx-serialization = "1.3.3" # https://github.com/Kotlin/kotlinx.serialization/releases/tag/v1.3.3
1212
kotlinx-knit = "0.4.0" # https://github.com/Kotlin/kotlinx-knit/releases
13-
kotlinx-coroutines = "1.6.1" # https://github.com/Kotlin/kotlinx.coroutines/releases
13+
kotlinx-coroutines = "1.6.3" # https://github.com/Kotlin/kotlinx.coroutines/releases
1414
kotlinx-kover = "0.5.1" # https://github.com/Kotlin/kotlinx-kover/releases
1515

16-
okio = "3.1.0" # https://search.maven.org/artifact/com.squareup.okio/okio
16+
okio = "3.2.0" # https://search.maven.org/artifact/com.squareup.okio/okio
1717

18-
kotest = "5.3.0" # https://github.com/kotest/kotest/releases
19-
kotestSnapshot = "5.3.0.1010-SNAPSHOT"
18+
kotest = "5.3.1" # https://github.com/kotest/kotest/releases
2019

2120
kotlinProcess = "1.3.1" # https://github.com/pgreze/kotlin-process/releases
2221

@@ -53,7 +52,7 @@ kotlinCompileTesting-ksp = { group = "com.github.tschuchortdev", name = "kotlin-
5352

5453
## Kotest ##
5554

56-
kotest-bom = { group = "io.kotest", name = "kotest-bom", version.ref = "kotestSnapshot" }
55+
kotest-bom = { group = "io.kotest", name = "kotest-bom", version.ref = "kotest" }
5756
kotest-assertionsCore = { group = "io.kotest", name = "kotest-assertions-core" }
5857
kotest-assertionsJson = { group = "io.kotest", name = "kotest-assertions-json" }
5958
kotest-property = { group = "io.kotest", name = "kotest-property" }

modules/kxs-ts-gen-core/src/commonMain/kotlin/dev/adamko/kxstsgen/KxsTsConfig.kt

+1-2
Original file line numberDiff line numberDiff line change
@@ -19,15 +19,14 @@ import kotlinx.serialization.modules.SerializersModuleCollector
1919
* @param[indent] Define the indentation that is used when generating source code
2020
* @param[declarationSeparator] The string that is used when joining [TsDeclaration]s
2121
* @param[namespaceConfig] (UNIMPLEMENTED) How elements are grouped into [TsDeclaration.TsNamespace]s.
22-
* @param[typeAliasTyping] (UNIMPLEMENTED) Control if type aliases are simple, or 'branded'.
22+
* @param[typeAliasTyping] Control whether type aliases are simple, or 'branded'.
2323
* @param[serializersModule] Used to obtain contextual and polymorphic information.
2424
*/
2525
data class KxsTsConfig(
2626
val indent: String = " ",
2727
val declarationSeparator: String = "\n\n",
2828
@UnimplementedKxsTsGenApi
2929
val namespaceConfig: NamespaceConfig = NamespaceConfig.Disabled,
30-
@UnimplementedKxsTsGenApi
3130
val typeAliasTyping: TypeAliasTypingConfig = TypeAliasTypingConfig.None,
3231
val serializersModule: SerializersModule = EmptySerializersModule,
3332
) {

modules/kxs-ts-gen-core/src/commonMain/kotlin/dev/adamko/kxstsgen/core/TsSourceCodeGenerator.kt

+14-16
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,11 @@ import dev.adamko.kxstsgen.KxsTsConfig
66
/**
77
* Writes [TsElement]s as TypeScript source code.
88
*/
9-
abstract class TsSourceCodeGenerator(
10-
val config: KxsTsConfig = KxsTsConfig(),
11-
) {
9+
interface TsSourceCodeGenerator {
1210

13-
abstract fun groupElementsBy(element: TsElement): String?
11+
fun groupElementsBy(element: TsElement): String?
1412

15-
open fun generateDeclaration(element: TsDeclaration): String {
13+
fun generateDeclaration(element: TsDeclaration): String {
1614
return when (element) {
1715
is TsDeclaration.TsEnum -> generateEnum(element)
1816
is TsDeclaration.TsInterface -> generateInterface(element)
@@ -23,21 +21,21 @@ abstract class TsSourceCodeGenerator(
2321
}
2422
}
2523

26-
abstract fun generateEnum(enum: TsDeclaration.TsEnum): String
27-
abstract fun generateInterface(element: TsDeclaration.TsInterface): String
28-
abstract fun generateNamespace(namespace: TsDeclaration.TsNamespace): String
29-
abstract fun generateTypeAlias(element: TsDeclaration.TsTypeAlias): String
30-
abstract fun generateTypeUnion(element: TsDeclaration.TsTypeUnion): String
31-
abstract fun generateTuple(tuple: TsDeclaration.TsTuple): String
24+
fun generateEnum(enum: TsDeclaration.TsEnum): String
25+
fun generateInterface(element: TsDeclaration.TsInterface): String
26+
fun generateNamespace(namespace: TsDeclaration.TsNamespace): String
27+
fun generateTypeAlias(element: TsDeclaration.TsTypeAlias): String
28+
fun generateTypeUnion(element: TsDeclaration.TsTypeUnion): String
29+
fun generateTuple(tuple: TsDeclaration.TsTuple): String
3230

33-
abstract fun generateMapTypeReference(tsMap: TsLiteral.TsMap): String
31+
fun generateMapTypeReference(tsMap: TsLiteral.TsMap): String
3432

35-
abstract fun generatePrimitive(primitive: TsLiteral.Primitive): String
36-
abstract fun generateTypeReference(typeRef: TsTypeRef): String
33+
fun generatePrimitive(primitive: TsLiteral.Primitive): String
34+
fun generateTypeReference(typeRef: TsTypeRef): String
3735

3836
open class Default(
39-
config: KxsTsConfig,
40-
) : TsSourceCodeGenerator(config) {
37+
private val config: KxsTsConfig,
38+
) : TsSourceCodeGenerator {
4139

4240

4341
override fun groupElementsBy(element: TsElement): String {

0 commit comments

Comments
 (0)