-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrun.sh
executable file
·53 lines (44 loc) · 1.18 KB
/
run.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
#! /bin/sh
# ==============================================================================
# Description: Run and build scripts
# Author: PileaX
# ==============================================================================
PROMPT=PileaX
APP="PileaX"
## Run from here
## -----------------------------------------------------------------------------
if [ $# -lt 1 ]
then
echo "Usage: `basename "$0"` dev|build|preview [dev|test|prod]"
exit 1
fi
## Params
## -----------------------------------------------------------------------------
command=$1
env=$2
if [ -z $command ]
then
command="dev"
fi
if [ -z $env ]
then
env="dev"
fi
export config=$env
## Preprocess
## -----------------------------------------------------------------------------
#VERSION=`cat package.json | python -c 'import json,sys;obj=json.load(sys.stdin);print obj["version"]'`
#echo "Building $APP $VERSION ..."
## Func
## -----------------------------------------------------------------------------
run_build() {
echo "pnpm run docs:$command ..."
pnpm docs:$command
}
## Run from here
## -----------------------------------------------------------------------------
case $command in
*)
run_build
;;
esac