org.siouan.frontend
Owner: v1nc3n4
Integrate your frontend NPM/Yarn build into a Gradle build.
https://siouan.github.io/frontend-gradle-plugin/
Sources: https://github.com/Siouan/frontend-gradle-plugin.git
Version 1.1.1
1.1.1
Created 29 April 2019.
Integrate your frontend NPM/Yarn build into Gradle.
Using the plugins DSL:
plugins {
id("org.siouan.frontend") version "1.1.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("org.siouan:frontend-gradle-plugin:1.1.1")
}
}
apply(plugin = "org.siouan.frontend")
Using the plugins DSL:
plugins {
id "org.siouan.frontend" version "1.1.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "org.siouan:frontend-gradle-plugin:1.1.1"
}
}
apply plugin: "org.siouan.frontend"