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
2021-03-02 18:30:28 +08:00

13 lines
478 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-cli && npm install && npm link
cd $CURRENT_DIR/doric-demo && npm install && npm run build
cd $CURRENT_DIR/doric-web && npm install && npm run build