Search Gradle plugins

Version 1.0.0 (latest)

1.0.0

Created 27 June 2019.

A Gradle plugin that generates a package that can be used as-is in an npm JavaScript project.

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.github.salomonbrys.gradle.kotlin.js.npm-bundle") version "1.0.0"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("gradle.plugin.com.github.salomonbrys.gradle.kotlin.js:kotlin-js-npm-bundle:1.0.0")
      }
    }
    
    apply(plugin = "com.github.salomonbrys.gradle.kotlin.js.npm-bundle")
  • Applying plugins to all subprojects .