Search Gradle plugins

Version 3.2.1 (latest)

3.2.1

Created 29 August 2024.

A Gradle plugin to manage npm projects

Using the plugins DSL:

plugins {
  id("io.github.kelvindev15.npm-gradle-plugin") version "3.2.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("io.github.kelvindev15:npm-gradle-plugin:3.2.1")
  }
}

apply(plugin = "io.github.kelvindev15.npm-gradle-plugin")

Using the plugins DSL:

plugins {
  id "io.github.kelvindev15.npm-gradle-plugin" version "3.2.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "io.github.kelvindev15:npm-gradle-plugin:3.2.1"
  }
}

apply plugin: "io.github.kelvindev15.npm-gradle-plugin"

Learn how to apply plugins to subprojects