搜索 Gradle 插件

版本 7.0.2 (最新)

7.0.2

创建日期 2024年2月2日。

Gradle 执行 Node.js 脚本的插件。支持 npm、pnpm 和 Yarn。

使用插件的 DSL

plugins {
  id("com.github.node-gradle.node") version "7.0.2"
}

使用旧插件应用程序

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("com.github.node-gradle:gradle-node-plugin:7.0.2")
  }
}

apply(plugin = "com.github.node-gradle.node")

使用插件的 DSL

plugins {
  id "com.github.node-gradle.node" version "7.0.2"
}

使用旧插件应用程序

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "com.github.node-gradle:gradle-node-plugin:7.0.2"
  }
}

apply plugin: "com.github.node-gradle.node"

学习如何将插件应用于子项目