Created
September 22, 2016 23:40
-
-
Save gambtho/5da5d31d8e86946d5c63fb85d988be37 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
plugins { | |
id "com.moowork.node" version "0.13" | |
} | |
task jsBuild(type: NpmTask) { | |
dependsOn 'jsTest' | |
args = ['build'] | |
} | |
task jsTest(type: NpmTask) { | |
dependsOn 'npmInstall' | |
args = ['test'] | |
} | |
project.tasks.processResources.dependsOn('npmInstall') | |
project.tasks.processResources.dependsOn('jsBuild') | |
project.tasks.test.dependsOn('jsTest') |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment