Skip to content

Commit

Permalink
chore: fix standard-version syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
aboutlo committed Oct 8, 2021
1 parent 506cb03 commit 87bbc28
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ether-swr",
"version": "1.0.0",
"version": "0.6.4",
"description": "Ether-SWR is a React hook that fetches blockchain data, streamlines the chores to keep the internal state of Decentralized App (DApp) and optimize the RPC calls to an Ethereum node.",
"main": "./dist/index.js",
"module": "./esm/index.js",
Expand All @@ -26,9 +26,9 @@
"build:cjs": "ncc build src/index.ts -s -o dist -m -e react -e react-dom -e swr -e web3-react -e Web3Provider",
"build:esm": "tsc --target ESNext --module ES6 --outDir esm",
"publish:local": "yalc publish",
"release:major": "yarn standard-version major",
"release:minor": "yarn standard-version minor",
"release:patch": "yarn standard-version patch",
"release:major": "yarn standard-version --release-as major",
"release:minor": "yarn standard-version --release-as minor",
"release:patch": "yarn standard-version --release-as patch",
"start": "jest --watch --verbose",
"types:check": "tsc --noEmit",
"format": "prettier --write \"{src,test,examples}/**/*.{ts,tsx}\"",
Expand Down

0 comments on commit 87bbc28

Please sign in to comment.