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.9.2 (latest)
0.9.2
Created 07 April 2022.
Plugin for npm and webpack support in gradle
Using the plugins DSL:
plugins {
id("us.ascendtech.js.npm") version "0.9.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.us.ascendtech:gwt-gradle:0.9.2")
}
}
apply(plugin = "us.ascendtech.js.npm")
Using the plugins DSL:
plugins {
id "us.ascendtech.js.npm" version "0.9.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.us.ascendtech:gwt-gradle:0.9.2"
}
}
apply plugin: "us.ascendtech.js.npm"