-
Notifications
You must be signed in to change notification settings - Fork 0
chore: migrate yarn to pnpm
#22
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
base: main
Are you sure you want to change the base?
Conversation
| "url": "https://github.com/ChainSafe/hashtree-js/issues" | ||
| }, | ||
| "homepage": "https://github.com/ChainSafe/hashtree-js#readme", | ||
| "packageManager": "[email protected]" |
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.
that's interesting, so it looks like we weren't even using yarn 1 here
|
|
||
| let input_len = input.len(); | ||
| if (input_len % 64) != 0 { | ||
| if !input_len.is_multiple_of(64) { |
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.
Changed this source because of a lint error
https://github.com/ChainSafe/hashtree-js/actions/runs/19976312327/job/57293224068?pr=22#step:10:93
|
|
||
| let input_len = input.len(); | ||
| if (input_len % 64) != 0 { | ||
| if !input_len.is_multiple_of(64) { |
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.
Changed this source because of a lint error
https://github.com/ChainSafe/hashtree-js/actions/runs/19976312327/job/57293224068?pr=22#step:10:93
yarn 1 to pnpmyarn to pnpm
Yarn 1 served us for years, but now it's not maintained any more. So time to migrate a modern alternative.