Search Gradle plugins

io.github.fluxo-kt.binary-compatibility-validator-js

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 0.2.0 (latest)

Created 16 September 2023.

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.

Using the plugins DSL:

plugins {
  id("io.github.fluxo-kt.binary-compatibility-validator-js") version "0.2.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("io.github.fluxo-kt:fluxo-bcv-js:0.2.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 "0.2.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "io.github.fluxo-kt:fluxo-bcv-js:0.2.0"
  }
}

apply plugin: "io.github.fluxo-kt.binary-compatibility-validator-js"

Learn how to apply plugins to subprojects