Skip to content

Commit

Permalink
fix: use legacy peer deps
Browse files Browse the repository at this point in the history
  • Loading branch information
aeneasr committed Jun 16, 2022
1 parent 344dea2 commit b730805
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/sync.sh
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ function sync {
done

# format everything that was rendered, only if package.json exists
(cd "$workdir"; if test -f package.json; then (npm i; npm run format); else true; fi)
(cd "$workdir"; if test -f package.json; then (npm i --legacy-peer-deps; npm run format); else true; fi)

# Copy contributing guide to docs if docs exist
if [ -d "$workdir/docs/docs" ]; then
Expand Down

0 comments on commit b730805

Please sign in to comment.