Skip to content

Commit

Permalink
[meta] ensure not-in-publish‘s absence does not fail anything
Browse files Browse the repository at this point in the history
  • Loading branch information
ljharb committed May 5, 2021
1 parent 57a7cc9 commit 2a0619d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -39,7 +39,7 @@
},
"scripts": {
"prepublishOnly": "safe-publish-latest",
"prepublish": "not-in-publish || npm run prepublishOnly",
"prepublish": "!(type not-in-publish) || not-in-publish || npm run prepublishOnly",
"prelint": "eclint check",
"lint": "eslint . bin/*",
"pretest": "npm run lint",
Expand Down

0 comments on commit 2a0619d

Please sign in to comment.