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
2020-03-20 14:29:34 +08:00

12 lines
477 B
Bash
Executable File

#!/usr/bin/env bash
##############################################################################
##
## Init Develop Environment
##
##############################################################################
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
cd $CURRENT_DIR/doric-web && npm install && npm run build
cd $CURRENT_DIR/doric-cli && npm install && npm link