mirror of
https://github.com/alibaba/lowcode-engine.git
synced 2025-12-13 12:13:10 +00:00
9 lines
219 B
Bash
Executable File
9 lines
219 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 --registry=http://registry.npm.alibaba-inc.com
|
|
lerna bootstrap
|