mirror of
https://github.com/alibaba/lowcode-engine.git
synced 2025-12-14 13:03:07 +00:00
9 lines
174 B
Bash
Executable File
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
|