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/bundle.sh

12 lines
416 B
Bash
Raw Normal View History

2019-12-21 23:15:09 +08:00
#!/usr/bin/env bash
##############################################################################
##
## Package JS Bundles
##
##############################################################################
CURRENT_DIR=$(cd $(dirname $0); pwd)
cd $CURRENT_DIR/doric-js && npm run build
2021-02-26 19:01:42 +08:00
cd $CURRENT_DIR/doric-cli && npm run build
2019-12-23 19:28:27 +08:00
cd $CURRENT_DIR/doric-demo && npm run build
2020-02-19 18:49:00 +08:00
cd $CURRENT_DIR/doric-web && npm run build