Last active
November 9, 2017 13:32
-
-
Save de314/50ff9b99a0958544656b4b8bdcbf8684 to your computer and use it in GitHub Desktop.
Spring Boot Npm Build Script
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 buildClient(type: Exec) { | |
executable "sh" | |
args "-c", "cd src/main/www && npm run publish" | |
} | |
build.dependsOn buildClient |
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
{ | |
... | |
"scripts": { | |
... | |
"publish": | |
"npm run build && rm -rf ../resources/static && cp -rf build ../resources/static" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment