install_frontend_dependencies.sh 500B

12345678910111213141516171819202122232425262728293031323334
  1. #!/bin/bash
  2. . bash_library.sh # source bash_library.sh
  3. log "cd frontend_lib"
  4. cd frontend_lib
  5. log "npm i"
  6. npm i
  7. log "sudo npm link"
  8. sudo npm link
  9. cd -
  10. log "cd frontend_app_html-document"
  11. cd frontend_app_html-document
  12. log "npm i"
  13. npm i
  14. log "npm link tracim_frontend_lib"
  15. npm link tracim_frontend_lib
  16. cd -
  17. log "cd frontend_app_thread"
  18. cd frontend_app_thread
  19. log "npm i"
  20. npm i
  21. log "npm link tracim_frontend_lib"
  22. npm link tracim_frontend_lib
  23. cd -
  24. log "cd frontend"
  25. cd frontend
  26. log "npm i"
  27. npm i
  28. cd -