mirror of
https://github.com/alibaba/lowcode-engine.git
synced 2025-12-10 18:03:01 +00:00
11 lines
189 B
Bash
Executable File
11 lines
189 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
rm -rf node_modules package-lock.json yarn.lock
|
|
|
|
npm i lerna@4.0.0
|
|
|
|
lerna clean -y
|
|
find ./packages -type f -name "package-lock.json" -exec rm -f {} \;
|
|
|
|
lerna bootstrap
|