-
Notifications
You must be signed in to change notification settings - Fork 944
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
Reduce number of dependencies #2628
Changes from all commits
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 |
---|---|---|
|
@@ -59,7 +59,6 @@ | |
}, | ||
"devDependencies": { | ||
"@types/benchmark": "^2.1.5", | ||
"@types/deep-equal": "^1.0.4", | ||
"@types/tape": "^4.2.32", | ||
"benchmark": "^2.1.4", | ||
"npm-run-all": "^4.1.5", | ||
|
@@ -69,7 +68,7 @@ | |
"typescript": "^5.2.2" | ||
}, | ||
"dependencies": { | ||
"deep-equal": "^2.2.3", | ||
"dequal": "^2.0.3", | ||
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. Did you consider 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. they both seem pretty good. I don't really have much of a preference for one vs the other |
||
"tslib": "^2.6.2" | ||
} | ||
} |
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 would strongly prefer that the build tooling changes go into another PR. Technically removing supported node versions is a break, but also 16 is EOL'd. We might consider just adding 22 and not removing 16 unless we want to 'sneak' that break into 7.x.
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.
yeah, makes sense. I just only have pnpm 9 installed on my machine and unfortunately they've dropped support for older node versions
if a maintainer would like to grab any changes you'd like to keep from this PR and send it, please feel free to do so
#2623 is already accomplishing most of what I was aiming for, so I'd also be happy to close this one if that's easier