forked from alibaba/lowcode-engine
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeploy.sh
More file actions
executable file
·39 lines (28 loc) · 857 Bytes
/
deploy.sh
File metadata and controls
executable file
·39 lines (28 loc) · 857 Bytes
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
#!/usr/bin/env bash
WORK_DIR=$PWD
BUILD_DEST=$1
if [ ! -d "$BUILD_DEST" ]; then
mkdir -p "$BUILD_DEST"
fi
tnpm i -g n
# 使用官方源有较大概率会 block
export N_NODE_MIRROR=https://npm.taobao.org/mirrors/node
echo "Switch node version to 14"
n 14.17.0
echo "Node Version"
node -v
echo "Deploy ${WORK_DIR} -> ${BUILD_DEST} ..."
echo "Clean"
tnpm run clean
echo "Setup"
tnpm run setup
# set source
# yarn config set registry https://registry.npm.alibaba-inc.com
lerna run cloud-build --stream
mv ./packages/react-simulator-renderer/dist/js/* $BUILD_DEST
mv ./packages/react-simulator-renderer/dist/css/* $BUILD_DEST
mv ./packages/rax-simulator-renderer/dist/js/* $BUILD_DEST
mv ./packages/rax-simulator-renderer/dist/css/* $BUILD_DEST
mv ./packages/engine/dist/js/* $BUILD_DEST
mv ./packages/engine/dist/css/* $BUILD_DEST
echo "Complete"