com.hiczp.kotlin-native-npm-publishing
CC-compatible
Owner:
czp3009
Publishes executable binaries from kotlin native targets to npm as npx-runnable packages.
https://github.com/czp3009/kotlin-native-npm-publishing
Sources: https://github.com/czp3009/kotlin-native-npm-publishing.git
Version 0.0.4 (latest)
Created 06 July 2026.
Publishes executable binaries from kotlin native targets to npm as npx-runnable packages.
Add this plugin to your build using the plugins DSL:
plugins {
id("com.hiczp.kotlin-native-npm-publishing") version "0.0.4"
}
See also:
-
Adding the plugin to build logic for usage in precompiled script plugins.
See the relevant documentation for more information.
Add this plugin as a dependency to
<convention-plugins-build>/build.gradle(.kts):dependencies { implementation("com.hiczp.kotlin-native-npm-publishing:com.hiczp.kotlin-native-npm-publishing.gradle.plugin:0.0.4") }It can then be applied in the precompiled script plugin:plugins { id("com.hiczp.kotlin-native-npm-publishing") } -
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.hiczp.kotlin-native-npm-publishing:com.hiczp.kotlin-native-npm-publishing.gradle.plugin:0.0.4") } } apply(plugin = "com.hiczp.kotlin-native-npm-publishing") - Applying plugins to all subprojects .