io.github.fluxo-kt.binary-compatibility-validator-js
Owner: Artyom Shendrik
Allows dumping TypeScript definitions of a JS part of a Kotlin multiplatform library that's public in the sense of npm package visibility, and ensures that the public definitions haven’t been changed in a way that makes this change binary incompatible.
https://github.com/fluxo-kt/fluxo-bcv-js
Sources: https://github.com/fluxo-kt/fluxo-bcv-js/tree/main
Version 1.0.0 (latest)
1.0.0
Created 10 June 2024.
TypeScript API support for KotlinX Binary Compatibility Validator (JS, WASM targets).
Allows dumping TypeScript definitions of a JS or WASM part of a Kotlin multiplatform library that's public in the sense of npm package visibility, and ensures that the public definitions haven’t been changed in a way that makes this change binary incompatible.
Using the plugins DSL:
plugins {
id("io.github.fluxo-kt.binary-compatibility-validator-js") version "1.0.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.github.fluxo-kt:fluxo-bcv-ts:1.0.0")
}
}
apply(plugin = "io.github.fluxo-kt.binary-compatibility-validator-js")
Using the plugins DSL:
plugins {
id "io.github.fluxo-kt.binary-compatibility-validator-js" version "1.0.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.github.fluxo-kt:fluxo-bcv-ts:1.0.0"
}
}
apply plugin: "io.github.fluxo-kt.binary-compatibility-validator-js"