Search Gradle plugins

Gradle plugin for working with JS bases on https://github.com/eriwen/gradle-js-plugin/

https://github.com/tbutter/gradle-js-plugin/

Sources: https://github.com/tbutter/gradle-js-plugin/

Version 2.15.1 (latest)

Created 14 May 2019.

Gradle plugin for working with JS bases on https://github.com/eriwen/gradle-js-plugin/

Add this plugin to your build using the plugins DSL:

plugins {
  id("eu.butter.gradle.js") version "2.15.1"
}

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