com.github.turansky.kfc.latest-webpack
Owner: Victor Turansky
Configure latest/stable webpack for Kotlin/JS projects
https://github.com/turansky/kfc-plugins
Sources: https://github.com/turansky/kfc-plugins
Version 4.43.0
4.43.0
Created 06 November 2021.
Configure latest/stable webpack for Kotlin/JS projects
Using the plugins DSL:
plugins {
id("com.github.turansky.kfc.latest-webpack") version "4.43.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.github.turansky.kfc:gradle-plugin:4.43.0")
}
}
apply(plugin = "com.github.turansky.kfc.latest-webpack")
Using the plugins DSL:
plugins {
id "com.github.turansky.kfc.latest-webpack" version "4.43.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.github.turansky.kfc:gradle-plugin:4.43.0"
}
}
apply plugin: "com.github.turansky.kfc.latest-webpack"