We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
scripts
npm run-scripts support pre and post hooks. For readability I prefer them to be co-located next to their script they belong to,
run-scripts
pre
post
e.g.
{ "scripts": { "precompress": "", "compress": "", "postcompress": "" } }
while pre comes before and post after the actual script.
So this should be valid:
{ "scripts": { "build": "", "precompress": "", "compress": "", "postcompress": "" } }
and this one is invalid:
{ "scripts": { "build": "", "compress": "", "postcompress": "", "precompress": "" } }
Same as JoshuaKGoldberg/eslint-plugin-package-json#499
The text was updated successfully, but these errors were encountered:
No branches or pull requests
npm
run-scripts
supportpre
andpost
hooks. For readability I prefer them to be co-located next to their script they belong to,e.g.
while
pre
comes before andpost
after the actual script.So this should be valid:
and this one is invalid:
Same as JoshuaKGoldberg/eslint-plugin-package-json#499
The text was updated successfully, but these errors were encountered: