net.octyl.ts2kt-unofficial
Owner: Octavia Togami
An unofficial plugin for running `ts2kt` on NPM dependencies.
https://github.com/kenzierocks/ts2kt-unofficial-gradle-plugin
Sources: https://github.com/kenzierocks/ts2kt-unofficial-gradle-plugin
Version 0.2.0 (latest)
Created 07 December 2018.
An unofficial plugin for running `ts2kt` on NPM dependencies.
Add this plugin to your build using the plugins DSL:
plugins {
id("net.octyl.ts2kt-unofficial") version "0.2.0"
}
See also:
-
Adding the plugin to build logic for usage in precompiled script plugins.
See the relevant documentation for more information.
Add this plugin as a dependency to
<convention-plugins-build>/build.gradle(.kts)
:dependencies { implementation("net.octyl.ts2kt-unofficial:net.octyl.ts2kt-unofficial.gradle.plugin:0.2.0") }
It can then be applied in the precompiled script plugin:plugins { id("net.octyl.ts2kt-unofficial") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("net.octyl.ts2kt-unofficial:net.octyl.ts2kt-unofficial.gradle.plugin:0.2.0") } } apply(plugin = "net.octyl.ts2kt-unofficial")
- Applying plugins to all subprojects .