-
Notifications
You must be signed in to change notification settings - Fork 88
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
feat: better scripts order for follow npm run order #171
base: main
Are you sure you want to change the base?
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This looks cool. @fisker thoughts?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I checked the package earlier, but didn't found many details, can you explain a little bit, how it different from the original one?
Another thing, this module deps on |
https://github.com/lerna/lerna/tree/master/commands/publish#lifecycle-scripts https://docs.npmjs.com/misc/scripts#description Object {
"build": "12",
"coverage": "17",
"dev": "20",
"install": "14",
"link": "11",
"lint": "16",
"npm": "10",
"pack": "5",
"postpack": "4",
"postpublish": "2",
"prepack": "6",
"prepare": "8",
"prepublish": "9",
"prepublishOnly": "7",
"publish": "3",
"restart": "19",
"shrinkwrap": "1",
"start": "21",
"stop": "18",
"test": "15",
"uninstall": "13",
"version": "0",
} => Array [
"start",
"dev",
"restart",
"stop",
"coverage",
"lint",
"test",
"install",
"uninstall",
"build",
"link",
"npm",
"prepublish",
"prepare",
"prepublishOnly",
"prepack",
"pack",
"postpack",
"publish",
"postpublish",
"shrinkwrap",
"version",
] |
Those two links really didn't help me to understand, I took a quick look at source, if I understand correctly, you sort |
先以 接著 將出現在
其他則依照原有設計 將 分組排序過程中 無視 |
No description provided.