Search Gradle plugins

Add this plugin to your build using the plugins DSL:

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

See also:

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