We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
jsx-eslint
ljharb
Learn more about funding links in repositories.
Report abuse
prepublishOnly
1 parent 7cdbe6b commit 36102cdCopy full SHA for 36102cd
package.json
@@ -22,7 +22,8 @@
22
"flow": "if [ ! -e ./.flowconfig ]; then echo \"Could not find .flowconfig\"; else flow; test $? -eq 0 -o $? -eq 2; fi",
23
"lint:fix": "npm run lint -- --fix",
24
"lint": "eslint --config .eslintrc src __tests__ __mocks__ scripts",
25
- "prepublish": "safe-publish-latest && not-in-publish || (npm run lint && npm run flow && npm run jest && npm run build)",
+ "prepublish": "safe-publish-latest && not-in-publish || npm run prepublishOnly",
26
+ "prepublishOnly": "npm run lint && npm run flow && npm run jest && npm run build",
27
"pretest": "npm run lint:fix && npm run flow",
28
"test": "npm run jest",
29
"posttest": "aud --production",
0 commit comments