dev.petuska.npm.publish
                  Owner:
                  
                    
                    Martynas Petuška
                  
                
A maven-publish alternative for NPM package publishing. Integrates with kotlin JS/MPP plugins (if applied) to automatically setup publishing to NPM repositories for all JS targets.
https://npm-publish.petuska.dev
Sources: https://github.com/mpetuska/npm-publish.git
Version 2.0.0
Created 26 May 2021.
                A maven-publish alternative for NPM package publishing.
Integrates with kotlin JS/MPP plugins (if applied) to automatically
setup publishing to NPM repositories for all JS targets.
                
            
            
            
                
            
            
        Add this plugin to your build using the plugins DSL:
plugins {
  id("dev.petuska.npm.publish") version "2.0.0"
}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("dev.petuska.npm.publish:dev.petuska.npm.publish.gradle.plugin:2.0.0") }It can then be applied in the precompiled script plugin:plugins { id("dev.petuska.npm.publish") }
- 
                The legacy method of plugin application.See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("dev.petuska.npm.publish:dev.petuska.npm.publish.gradle.plugin:2.0.0") } } apply(plugin = "dev.petuska.npm.publish")
- Applying plugins to all subprojects .