Skip to content
New issue

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

Alphabetically sorting with co-located hooks for scripts #205

Open
rakleed opened this issue Dec 30, 2024 · 0 comments
Open

Alphabetically sorting with co-located hooks for scripts #205

rakleed opened this issue Dec 30, 2024 · 0 comments

Comments

@rakleed
Copy link

rakleed commented Dec 30, 2024

npm run-scripts support pre and post hooks. For readability I prefer them to be co-located next to their script they belong to,

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

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant