Search Gradle plugins

com.palawanframe.node

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)

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.

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.palawanframe.node") version "0.2.4"
}

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("com.palawanframe.node:com.palawanframe.node.gradle.plugin:0.2.4")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("com.palawanframe.node")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("com.palawanframe.node:com.palawanframe.node.gradle.plugin:0.2.4")
      }
    }
    
    apply(plugin = "com.palawanframe.node")
  • Applying plugins to all subprojects .