-
Notifications
You must be signed in to change notification settings - Fork 86
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updated github action to call an update version script that updates b…
…oth the package.json version and contract version
- Loading branch information
Showing
2 changed files
with
4 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "@zoralabs/zora-1155-contracts", | ||
"version": "1.4.0", | ||
"version": "1.4.1", | ||
"repository": "[email protected]:ourzora/creator-contracts.git", | ||
"author": "Iain <[email protected]>", | ||
"license": "MIT", | ||
|
@@ -25,7 +25,8 @@ | |
"storage-inspect:generate": "./script/storage-check.sh generate ZoraCreator1155Impl ZoraCreator1155FactoryImpl", | ||
"release": "yarn run prepack && changeset publish", | ||
"js-test:watch": "vitest dev", | ||
"anvil": "anvil --fork-url https://rpc.zora.energy --fork-block-number 2550000 --chain-id 31337" | ||
"anvil": "anvil --fork-url https://rpc.zora.energy --fork-block-number 2550000 --chain-id 31337", | ||
"update-version": "changeset version && yarn update-contract-version" | ||
}, | ||
"files": [ | ||
"dist/", | ||
|