Skip to content

Commit

Permalink
chore: explicit build required for yarn 4
Browse files Browse the repository at this point in the history
  • Loading branch information
MrMaz committed Jul 17, 2024
1 parent cca15c3 commit 23b6b85
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 4 deletions.
7 changes: 5 additions & 2 deletions build/docs-core.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
7 changes: 5 additions & 2 deletions build/docs-react.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 23b6b85

Please sign in to comment.