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.2.0-beta4
1.2.0-beta4
Created 08 March 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.2.0-beta4"
}
See also:
-
The legacy method of plugin application.
buildscript { repositories { gradlePluginPortal() } dependencies { classpath("io.github.pereduromega:NpmPlugin:1.2.0-beta4") } } apply(plugin = "io.github.pereduromega.npm.plugin")
- Applying plugins to all subprojects .