-
Notifications
You must be signed in to change notification settings - Fork 4.4k
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
Lodash: Refactor away from _.pick()
#45946
Conversation
|
Size Change: 0 B Total Size: 1.31 MB ℹ️ View Unchanged
|
379206a
to
fa564ce
Compare
|
fa564ce
to
1886f89
Compare
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, great work! 👍 One more method down 🙂
Seems like we introduced a regression with this one, it's being fixed in #49431. |
What?
This PR removes Lodash's
_.pick()
completely and deprecates the package. There is just a single usage and conversion is pretty straightforward.This PR
iswas blocked by a few PRs:_.pick()
in block library #45940_.pick()
in block editor #45942getMergedGlobalStyles()
away from_.pick()
#45943_.pick()
#45944_.pick()
#45945It's expected that the static type and linting check fails before they have landed.I've rebased the PR now and it is ready for review.
Why?
Lodash is known to unnecessarily inflate the bundle size of packages, and in most cases, it can be replaced with native language functionality. See these for more information and rationale:
@wordpress/api-fetch
package haslodash
as a dependency #39495How?
We're refactoring the logic of the function to greatly simplify it from:
Before: Filter 2 objects by certain known keys, compare the values, and return true if they are the same, false otherwise
After: Return true if the value of every known key for object 1 is the same as for object 2, false otherwise.
This allows us to not only remove 2
_.pick()
instances, but also one of_.isEqual()
.Testing Instructions