Guest User

Untitled

a guest
Nov 15th, 2018
157
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. #!/bin/bash
  2. git pull origin branchName
  3. npm install
  4. npm run build
  5. npm run start:prod
  6.  
  7. "scripts": {
  8. "test": "echo "Error: no test specified" && exit 1",
  9. "start": "webpack-dev-server --hot --config webpack.prod.js",
  10. "build": "webpack --config webpack.prod.js",
  11. "start:prod": "cd dist && static-server -p 4000"
  12. }
Add Comment
Please, Sign In to add comment