9 lines
157 B
Groovy
9 lines
157 B
Groovy
plugins {
|
|
id "com.github.node-gradle.node" version "2.2.4"
|
|
}
|
|
|
|
task build(type: NpmTask) {
|
|
inputs.dir("src")
|
|
outputs.dir("dist")
|
|
args = ['run', 'build']
|
|
} |