lowcode-engine/scripts/reinstall.sh
2020-03-27 14:01:27 +08:00

9 lines
174 B
Bash
Executable File

#!/usr/bin/env bash
rm -rf node_modules package-lock.json
lerna clean -y
find ./packages -type f -name "package-lock.json" -exec rm -f {} \;
yarn install
npm run bootstrap