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")
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"