net.akehurst.kotlin.gradle.plugin.jsIntegration
Owner: D Akehurst
Gradle plugin enable use of Kotlin's node/yarn infrastructure for building
https://github.com/dhakehurst/kotlin.gradle.plugin.exportPublic
Sources: https://github.com/dhakehurst/kotlin.gradle.plugin.exportPublic
Version 2.0.20-rc2 (latest)
2.0.20-rc2
Created 10 October 2024.
Gradle plugin enable use of Kotlin's node/yarn infrastructure for building
Using the plugins DSL:
plugins {
id("net.akehurst.kotlin.gradle.plugin.jsIntegration") version "2.0.20-rc2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("net.akehurst.kotlin.gradle.plugin:jsIntegration:2.0.20-rc2")
}
}
apply(plugin = "net.akehurst.kotlin.gradle.plugin.jsIntegration")
Using the plugins DSL:
plugins {
id "net.akehurst.kotlin.gradle.plugin.jsIntegration" version "2.0.20-rc2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "net.akehurst.kotlin.gradle.plugin:jsIntegration:2.0.20-rc2"
}
}
apply plugin: "net.akehurst.kotlin.gradle.plugin.jsIntegration"