Skip to content

Commit

Permalink
fix: hook into version:update for automated release workflow (#4640)
Browse files Browse the repository at this point in the history
  • Loading branch information
yorhodes authored Oct 7, 2024
1 parent 4415ac2 commit 5158296
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions solidity/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@
],
"license": "Apache-2.0",
"scripts": {
"build": "yarn version:bytecode && yarn hardhat-esm compile && tsc && ./exportBuildArtifact.sh",
"build": "yarn version:update && yarn hardhat-esm compile && tsc && ./exportBuildArtifact.sh",
"lint": "solhint contracts/**/*.sol",
"clean": "yarn hardhat-esm clean && rm -rf ./dist ./cache ./types ./coverage ./out ./forge-cache ./fixtures",
"coverage": "yarn fixtures && ./coverage.sh",
Expand All @@ -80,8 +80,8 @@
"gas-ci": "yarn gas --check --tolerance 2 || (echo 'Manually update gas snapshot' && exit 1)",
"slither": "slither .",
"storage": "./storage.sh",
"version:bytecode": "sh ./bytecodeversion.sh",
"version:changed": "yarn version:bytecode && git diff --exit-code",
"version:update": "sh ./bytecodeversion.sh",
"version:changed": "yarn version:update && git diff --exit-code",
"version:exhaustive": "yarn tsx ./test/exhaustiveversion.test.ts"
},
"peerDependencies": {
Expand Down

0 comments on commit 5158296

Please sign in to comment.