spa-demo/build.gradle

15 lines
289 B
Groovy
Raw Normal View History

plugins {
id "com.moowork.node" version "1.3.1"
id "com.moowork.gulp" version "1.2.0"
}
// run npm install and install gulp when building
gulp_build.dependsOn 'installGulp'
gulp_build.dependsOn 'npmInstall'
task build() {}
// run gulp build on every build
build.dependsOn gulp_build