Files
KnowStreaming/km-console/tool/build.sh
2022-08-18 17:04:05 +08:00

16 lines
247 B
Bash
Executable File

#!/bin/sh
set -ex
#检测node版本
echo "node version: " `node -v`
echo "npm version: " `npm -v`
pwd=`pwd`
echo "start install"
# npm run clean
npm run i
echo "install success"
echo "start build"
rm -rf pub/
lerna run build
echo "build success"