Search Gradle plugins

Add this plugin to your build using the plugins DSL:

plugins {
  id("us.ascendtech.js.npm") version "0.4.16"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("gradle.plugin.us.ascendtech:gwt-gradle:0.4.16")
      }
    }
    
    apply(plugin = "us.ascendtech.js.npm")
  • Applying plugins to all subprojects .