Last active
December 10, 2018 02:10
-
-
Save orekyuu/428417a6db52aeaec4a28b1867612185 to your computer and use it in GitHub Desktop.
inside
This file contains hidden or 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
task npmRunBuild() { | |
doLast { | |
def p = "npm run build".execute() | |
p.waitForProcessOutput(System.out, System.err) | |
} | |
} | |
processResources.dependsOn npmRunBuild |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
configuration フェーズで npm タスクが実行されていますよ
タスク実行時に npm が実行されるために、
としたほうがよいです