Skip to content

Commit

Permalink
[meta] fix prepublish scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
ljharb committed Oct 26, 2021
1 parent d4a57d8 commit ff26b82
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions package.json
Expand Up @@ -22,8 +22,8 @@
"flow": "if [ ! -e ./.flowconfig ]; then echo \"Could not find .flowconfig\"; else flow; test $? -eq 0 -o $? -eq 2; fi",
"lint:fix": "npm run lint -- --fix",
"lint": "eslint --config .eslintrc src __tests__ __mocks__ scripts",
"prepublish": "safe-publish-latest && not-in-publish || npm run prepublishOnly",
"prepublishOnly": "npm run lint && npm run flow && npm run jest && npm run build",
"prepublish": "not-in-publish || npm run prepublishOnly",
"prepublishOnly": "safe-publish-latest && npm run lint && npm run flow && npm run jest && npm run build",
"pretest": "npm run lint:fix && npm run flow",
"test": "npm run jest",
"posttest": "aud --production",
Expand Down

0 comments on commit ff26b82

Please sign in to comment.