Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .changeset/two-houses-work.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@eth-optimism/contracts": patch
---

Updates the `yarn build` command to not error
Comment on lines +1 to +5

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think we do not need a changeset since yarn build is only needed locally? Perhaps to bump the Docker image's construction? If so that makes sense.

10 changes: 8 additions & 2 deletions packages/contracts/scripts/build.sh
Original file line number Diff line number Diff line change
@@ -1,2 +1,8 @@
yarn run build:typescript & yarn run build:contracts
yarn run build:typescript:ovm & yarn run build:contracts:ovm
#!/bin/bash

set -e

yarn run build:typescript&
yarn run build:contracts&
yarn run build:contracts:ovm&
wait