Skip to content

Commit

Permalink
deploy 3.0.5
Browse files Browse the repository at this point in the history
  • Loading branch information
arietrouw committed Nov 20, 2023
1 parent b900bc5 commit 32d02cd
Show file tree
Hide file tree
Showing 8 changed files with 16 additions and 9 deletions.
11 changes: 9 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -59,10 +59,17 @@
},
"sideEffects": false,
"scripts": {
"build": "yarn xy clean && yarn compile",
"compile": "yarn workspaces foreach --all --topological-dev run package-compile",
"deploy": "yarn xy clean && yarn compile && yarn workspaces foreach --all version patch --deferred && yarn version apply --all && workspaces foreach -pt npm publish"
"deploy": "yarn deploy-patch",
"deploy-major": "yarn workspaces foreach --all version major --deferred && yarn deploy-common",
"deploy-minor": "yarn workspaces foreach --all version minor --deferred && yarn deploy-common",
"deploy-patch": "yarn workspaces foreach --all version patch --deferred && yarn deploy-common",
"deploy-common": "yarn build && yarn version apply --all && yarn workspaces foreach -pAtv npm publish",
"deploy-next-major": "yarn workspaces foreach --all version major --deferred && yarn build && yarn version apply --all --prerelease && yarn workspaces foreach -ptv npm publish --tag next",
"deploy-next": "yarn workspaces foreach --all version minor --deferred && yarn build && yarn version apply --all --prerelease && yarn workspaces foreach -ptv npm publish --tag next"
},
"version": "3.0.2",
"version": "3.0.5",
"packageManager": "[email protected]",
"volta": {
"node": "20.9.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/open-zeppelin-typechain/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,6 @@
"lint-pkg": "npmPkgJsonLint ."
},
"sideEffects": false,
"version": "3.0.2",
"version": "3.0.5",
"type": "module"
}
2 changes: 1 addition & 1 deletion packages/solidity/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,5 +34,5 @@
"package-recompile": "yarn package-clean && yarn package-compile"
},
"sideEffects": false,
"version": "3.0.2"
"version": "3.0.5"
}
2 changes: 1 addition & 1 deletion packages/typechain/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,6 @@
"lint-pkg": "npmPkgJsonLint ."
},
"sideEffects": false,
"version": "3.0.2",
"version": "3.0.5",
"type": "module"
}
2 changes: 1 addition & 1 deletion packages/uniswap-solidity/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,5 +36,5 @@
"copy-contracts": "rimraf src && copyfiles -u 6 \"../../node_modules/@uniswap/v3-core/contracts/**/*\" src"
},
"sideEffects": false,
"version": "3.0.2"
"version": "3.0.5"
}
2 changes: 1 addition & 1 deletion packages/uniswap-typechain/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,6 @@
"lint-pkg": "npmPkgJsonLint ."
},
"sideEffects": false,
"version": "3.0.2",
"version": "3.0.5",
"type": "module"
}
2 changes: 1 addition & 1 deletion packages/world-solidity/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,5 +34,5 @@
"package-recompile": "yarn package-clean && yarn package-compile"
},
"sideEffects": false,
"version": "3.0.2"
"version": "3.0.5"
}
2 changes: 1 addition & 1 deletion packages/world-typechain/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,6 @@
"lint-pkg": "npmPkgJsonLint ."
},
"sideEffects": false,
"version": "3.0.2",
"version": "3.0.5",
"type": "module"
}

0 comments on commit 32d02cd

Please sign in to comment.