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-beta12 (latest)
1.4.1-beta12
Created 20 December 2023.
Simple way to use npm scripts from gradle with scripts defined in package.json being auto-extracted as gradle tasks
Add this plugin to your build using the plugins DSL:
plugins {
id("io.github.pereduromega.npm.plugin") version "1.4.1-beta12"
}
See also:
-
The legacy method of plugin application.
buildscript { repositories { gradlePluginPortal() } dependencies { classpath("io.github.pereduromega:GradleNpmPlugin:1.4.1-beta12") } } apply(plugin = "io.github.pereduromega.npm.plugin")
- Applying plugins to all subprojects .