Skip to content

Commit

Permalink
Explicitly invalid package version for @celo/abis and @celo/contracts…
Browse files Browse the repository at this point in the history
… by default
  • Loading branch information
shazarre committed Dec 14, 2023
1 parent 1306ab4 commit b83d5ef
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion packages/protocol/abis/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@celo/abis",
"version": "10.0.0-local",
"version": "dont-publish-invalid-version",
"author": "cLabs",
"license": "LGPL-3.0",
"main": "./dist/cjs/index.js",
Expand Down
2 changes: 1 addition & 1 deletion packages/protocol/contracts/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@celo/contracts",
"version": "0.0.0-template.version",
"version": "dont-publish-invalid-version",
"author": "cLabs",
"license": "LGPL-3.0",
"repository": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,7 @@ function prepareContractsPackage() {

fs.writeFileSync(
contractsPackageJsonPath,
contents.replace('0.0.0-template.version', process.env.RELEASE_VERSION)
contents.replace('dont-publish-invalid-version', process.env.RELEASE_VERSION)
)

return
Expand Down

0 comments on commit b83d5ef

Please sign in to comment.