us.ascendtech.js.npm
Owner: Matthew Davis
Plugin for npm and webpack support in gradle
https://github.com/ascendtech/gwt-gradle
Sources: https://github.com/ascendtech/gwt-gradle
Version 0.4.30
0.4.30
Created 17 March 2020.
Plugin for npm and webpack support in gradle
Using the plugins DSL:
plugins {
id("us.ascendtech.js.npm") version "0.4.30"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.us.ascendtech:gwt-gradle:0.4.30")
}
}
apply(plugin = "us.ascendtech.js.npm")
Using the plugins DSL:
plugins {
id "us.ascendtech.js.npm" version "0.4.30"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.us.ascendtech:gwt-gradle:0.4.30"
}
}
apply plugin: "us.ascendtech.js.npm"