io.github.kelvindev15.npm-gradle-plugin
Owner: Kelvin Olaiya
A Gradle plugin to manage npm projects
https://github.com/kelvindev15/npm-gradle-plugin
Sources: https://github.com/kelvindev15/npm-gradle-plugin.git
Version 3.2.4
3.2.4
Created 24 September 2024.
A Gradle plugin to manage npm projects
Using the plugins DSL:
plugins {
id("io.github.kelvindev15.npm-gradle-plugin") version "3.2.4"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.github.kelvindev15:npm-gradle-plugin:3.2.4")
}
}
apply(plugin = "io.github.kelvindev15.npm-gradle-plugin")
Using the plugins DSL:
plugins {
id "io.github.kelvindev15.npm-gradle-plugin" version "3.2.4"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.github.kelvindev15:npm-gradle-plugin:3.2.4"
}
}
apply plugin: "io.github.kelvindev15.npm-gradle-plugin"