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
477 B
Bash
Raw Normal View History

2019-10-21 20:42:03 +08:00
#!/usr/bin/env bash
##############################################################################
##
## Init Develop Environment
##
##############################################################################
2020-01-06 13:13:06 +08:00
CURRENT_DIR=$(cd $(dirname $0); pwd)
cd $CURRENT_DIR/doric-js && npm install && npm run build
cd $CURRENT_DIR/doric-demo && npm install && npm run build
2020-03-20 14:24:22 +08:00
cd $CURRENT_DIR/doric-web && npm install && npm run build
2020-01-06 13:13:06 +08:00
cd $CURRENT_DIR/doric-cli && npm install && npm link