From 23b6b85e9a3fb859c97ddd75f872a176e7cbc31c Mon Sep 17 00:00:00 2001 From: Marshall Sorenson Date: Tue, 16 Jul 2024 20:54:18 -0400 Subject: [PATCH] chore: explicit build required for yarn 4 --- build/docs-core.sh | 7 +++++-- build/docs-react.sh | 7 +++++-- 2 files changed, 10 insertions(+), 4 deletions(-) diff --git a/build/docs-core.sh b/build/docs-core.sh index 25923bde..e4425396 100755 --- a/build/docs-core.sh +++ b/build/docs-core.sh @@ -5,8 +5,11 @@ REPO=./.tmp/repos/rockets # clone git clone --depth=1 https://github.com/conceptadev/rockets.git $REPO -# install and build -yarn --cwd $REPO +# install +yarn --cwd $REPO --immutable + +# build +yarn --cwd $REPO build # typedoc typedoc --options typedoc.rockets.json \ No newline at end of file diff --git a/build/docs-react.sh b/build/docs-react.sh index e14509e0..0eb2a632 100755 --- a/build/docs-react.sh +++ b/build/docs-react.sh @@ -5,8 +5,11 @@ REPO=./.tmp/repos/rockets-react # clone git clone --depth=1 https://github.com/conceptadev/rockets-react.git $REPO -# install and build -yarn --cwd $REPO +# install +yarn --cwd $REPO --immutable + +# build +yarn --cwd $REPO build # typedoc typedoc --options typedoc.rockets-react.json \ No newline at end of file