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