This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
Doric/setup.sh

12 lines
422 B
Bash
Raw Normal View History

2019-10-21 20:42:03 +08:00
#!/usr/bin/env bash
##############################################################################
##
## Init Develop Environment
##
##############################################################################
cd js-framework && npm install && npm run build && cd ..
cd debugger && npm install && npm run build && cd ..
cd demo && npm install && npm run build && cd ..
2019-10-31 19:38:47 +08:00
cd doric-cli && npm install && npm link && cd ..