com.palantir.npm-run
Owner: Palantir Technologies
A Gradle Plugin to create lifecycle tasks that trigger npm run commands.
https://github.com/palantir/gradle-npm-run-plugin
Sources: https://github.com/palantir/gradle-npm-run-plugin
Version 0.5.0 (latest)
Created 06 February 2017.
A Gradle Plugin to create lifecycle tasks that trigger npm run commands.
Add this plugin to your build using the plugins DSL:
plugins {
id("com.palantir.npm-run") version "0.5.0"
}
See also:
-
Adding the plugin to build logic for usage in precompiled script plugins.
See the relevant documentation for more information.
Add this plugin as a dependency to
<convention-plugins-build>/build.gradle(.kts)
:dependencies { implementation("com.palantir.npm-run:com.palantir.npm-run.gradle.plugin:0.5.0") }
It can then be applied in the precompiled script plugin:plugins { id("com.palantir.npm-run") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.palantir.npm-run:com.palantir.npm-run.gradle.plugin:0.5.0") } } apply(plugin = "com.palantir.npm-run")
- Applying plugins to all subprojects .