mirror of
https://github.com/didi/KnowStreaming.git
synced 2025-12-25 04:32:12 +08:00
16 lines
247 B
Bash
Executable File
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" |