-
Notifications
You must be signed in to change notification settings - Fork 4
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
Replace pnpm with npm #6
Conversation
"all": "concurrently -g pnpm:check-* pnpm:build", | ||
"check-format": "pnpm run _prettier-base --check", | ||
"check-lint": "eslint \"**/*.@(js|cjs|ts)\"", | ||
"all": "concurrently -g npm:check-* npm:build", |
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.
does this require concurrently to be installed?
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.
Concurrently is spec'd as a development dependency, so it is installed by npm install
. I added it as a dev dep here (and in Prime last week) after conferring with @micheal-parks
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.
LGTM
This PR replaces pnpm with vanilla npm, and updates build scripts and documentation accordingly.
pnpm publish --recursive
has been replaced with JS-DevTools/npm-publish, tied to a commit that has all deprecation issues resolved. I attached it to a commit rather than a version following GitHub Actions security hardening recommendations