com.palawanframe.node
Owner: Petr Langr
Build your node frontend application along with your gradle base backend application. Plugin manages various node packagers and their execution. Enables compilation of node base project without need of installing NodeJS - all done via local download.
https://github.com/langrp/gradle-node-plugin
Sources: https://github.com/langrp/gradle-node-plugin
Version 0.2.4 (latest)
0.2.4
Created 15 February 2022.
Build your node frontend application along with your gradle base backend application. Plugin manages
various node packagers and their execution. Enables compilation of node base project without need
of installing NodeJS - all done via local download.
Using the plugins DSL:
plugins {
id("com.palawanframe.node") version "0.2.4"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.palawanframe.build:gradle-node-plugin:0.2.4")
}
}
apply(plugin = "com.palawanframe.node")
Using the plugins DSL:
plugins {
id "com.palawanframe.node" version "0.2.4"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.palawanframe.build:gradle-node-plugin:0.2.4"
}
}
apply plugin: "com.palawanframe.node"