install_frontend_dependencies.sh 360B

1234567891011121314151617181920212223242526
  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"
  18. cd frontend
  19. log "npm i"
  20. npm i
  21. cd -