Skip to content

Commit

Permalink
fix(repo): fix non existent script
Browse files Browse the repository at this point in the history
prepublishOnly tried running npm run prettier,
but since it was replaced with npm run lint
it caused an error when publishing.
  • Loading branch information
ZuperZee committed Nov 6, 2020
1 parent 9967954 commit 0bf6db3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
"lint": "npm run lint:eslint && npm run lint:prettier",
"lint:eslint": "eslint . --ext .ts,.js",
"lint:prettier": "prettier --check .",
"prepublishOnly": "npm run lint && npm run prettier && npm run test && npm run build",
"prepublishOnly": "npm run lint && npm run test && npm run build",
"test": "jest --coverage",
"watch": "rollup -cw"
},
Expand Down

0 comments on commit 0bf6db3

Please sign in to comment.