allotment
allotment copied to clipboard
`lodash.isequal` is deprecated
The last version of lodash.isequal is deprecated.
npm warn deprecated [email protected]: This package is deprecated. Use require('node:util').isDeepStrictEqual instead.
I've seen that some maintainers from different project switched to es-toolkit.
It looks like very simple migration:
- Switch to
es-toolkit; - Replace:
import *** from "lodash.***";toimport { *** } from "es-toolkit";
I've changed it here to the fastest lib fast-deep-equal
https://github.com/johnwalley/allotment/pull/865