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
2020-02-19 19:54:10 +08:00

11 lines
373 B
Bash

#!/usr/bin/env bash
##############################################################################
##
## Package JS Bundles
##
##############################################################################
CURRENT_DIR=$(cd $(dirname $0); pwd)
cd $CURRENT_DIR/doric-js && npm run build
cd $CURRENT_DIR/doric-demo && npm run build
cd $CURRENT_DIR/doric-web && npm run build