com.liferay.js.transpiler.base
The JS Transpiler Base Gradle plugin lets you use Gradle dependencies (such as external module or project dependencies) in Node.js scripts.
https://github.com/liferay/liferay-portal/tree/master/modules/sdk/gradle-plugins-js-transpiler
Version 2.4.21
Created 16 January 2019.
The JS Transpiler Base Gradle plugin lets you use Gradle dependencies (such as external module or project dependencies) in Node.js scripts.
Using the plugins DSL:
plugins {
id "com.liferay.js.transpiler.base" version "2.4.21"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.liferay:gradle-plugins-js-transpiler:2.4.21"
}
}
apply plugin: "com.liferay.js.transpiler.base"
Using the plugins DSL:
plugins {
id("com.liferay.js.transpiler.base") version "2.4.21"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.liferay:gradle-plugins-js-transpiler:2.4.21")
}
}
apply(plugin = "com.liferay.js.transpiler.base")