diff --git a/yarn-project/bootstrap.sh b/yarn-project/bootstrap.sh index f8725b7f825..c9ebca3a9e1 100755 --- a/yarn-project/bootstrap.sh +++ b/yarn-project/bootstrap.sh @@ -15,7 +15,12 @@ CMD=${1:-} if [ "$CMD" = "clean" ]; then git clean -fdx exit 0 -elif [ "$CMD" = "full" ]; then +fi + +# Generate l1-artifacts before creating lock file +(cd l1-artifacts && bash ./scripts/generate-artifacts.sh) + +if [ "$CMD" = "full" ]; then yarn install --immutable yarn build exit 0