-
-
Notifications
You must be signed in to change notification settings - Fork 76
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
fix: don't include chore PRs in changelog #1810
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -32,8 +32,8 @@ | |
"lint:spelling": "cspell \"**\" \".github/**/*\"", | ||
"prepare": "husky", | ||
"test": "vitest", | ||
"test:create": "npx tsx script/create-test-e2e.ts", | ||
"test:initialize": "npx tsx script/initialize-test-e2e.ts", | ||
"test:create": "tsx script/create-test-e2e.ts", | ||
"test:initialize": "tsx script/initialize-test-e2e.ts", | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Unrelated changes? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. fyi @michaelfaith I removed these changes before merging - but if you think they're good I'm interested in learning more There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. yeah, no worries. That was unrelated. I thought it might have been missed in some repo migration from npm to pnpm. It seemed strange that everything used pnpm except for these two scripts, which didn't really need |
||
"test:migrate": "vitest run -r script/", | ||
"tsc": "tsc" | ||
}, | ||
|
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.
[Praise] I appreciate you alphabetizing these 😁