Skip to content

Instantly share code, notes, and snippets.

@de314
Last active November 9, 2017 13:32
Show Gist options
  • Save de314/50ff9b99a0958544656b4b8bdcbf8684 to your computer and use it in GitHub Desktop.
Save de314/50ff9b99a0958544656b4b8bdcbf8684 to your computer and use it in GitHub Desktop.
Spring Boot Npm Build Script
task buildClient(type: Exec) {
executable "sh"
args "-c", "cd src/main/www && npm run publish"
}
build.dependsOn buildClient
{
...
"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