com.github.turansky.kfc.webpack-loaders
Owner: Victor Turansky
Webpack loaders configuration for Kotlin/JS
https://github.com/turansky/kfc-plugins
Sources: https://github.com/turansky/kfc-plugins
Version 2.7.0
2.7.0
Created 02 March 2021.
Webpack loaders configuration for Kotlin/JS
Using the plugins DSL:
plugins {
id("com.github.turansky.kfc.webpack-loaders") version "2.7.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:2.7.0")
}
}
apply(plugin = "com.github.turansky.kfc.webpack-loaders")
Using the plugins DSL:
plugins {
id "com.github.turansky.kfc.webpack-loaders" version "2.7.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.github.turansky.kfc:gradle-plugin:2.7.0"
}
}
apply plugin: "com.github.turansky.kfc.webpack-loaders"