io.github.pereduromega.npm.plugin
Owner: Paul SOUTEYRAT
Simple way to use npm scripts from gradle with scripts defined in package.json being auto-extracted as gradle tasks
https://github.com/PeredurOmega/GradleNpmPlugin
Sources: https://github.com/PeredurOmega/GradleNpmPlugin
Version 1.4.1-beta4
1.4.1-beta4
Created 14 December 2023.
Simple way to use npm scripts from gradle with scripts defined in package.json being auto-extracted as gradle tasks
Using the plugins DSL:
plugins {
id("io.github.pereduromega.npm.plugin") version "1.4.1-beta4"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.github.pereduromega:GradleNpmPlugin:1.4.1-beta4")
}
}
apply(plugin = "io.github.pereduromega.npm.plugin")
Using the plugins DSL:
plugins {
id "io.github.pereduromega.npm.plugin" version "1.4.1-beta4"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.github.pereduromega:GradleNpmPlugin:1.4.1-beta4"
}
}
apply plugin: "io.github.pereduromega.npm.plugin"