Skip to content

Commit

Permalink
Fix prepublishOnly script (#124)
Browse files Browse the repository at this point in the history
The `prepublishOnly` script was referencing a package script that no longer exists and, judging by its name, would be unnecessary anyway.
  • Loading branch information
rekmarks authored Apr 27, 2022
1 parent fa67ae6 commit 27a9327
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 @@ -30,7 +30,7 @@
"lint:eslint": "eslint . --cache --ext js,ts",
"lint:fix": "yarn lint:eslint --fix && yarn lint:misc --write",
"lint:misc": "prettier '**/*.json' '**/*.md' '!CHANGELOG.md' '**/*.yml' --ignore-path .gitignore",
"prepublishOnly": "yarn setup && yarn build:clean && yarn lint && yarn test:nobuild",
"prepublishOnly": "yarn setup && yarn build:clean && yarn lint",
"setup": "yarn install && yarn allow-scripts",
"test": "jest",
"test:watch": "jest --watch"
Expand Down

0 comments on commit 27a9327

Please sign in to comment.