ljharb / object.assign

ES6 spec-compliant Object.assign shim. From https://github.com/es-shims/es6-shim
https://tc39.es/ecma262/#sec-object.assign
MIT License
107 stars 22 forks source link

Patch level update to 4.1.1 to pull in some of the updated dependencies #74

Closed marekventur closed 4 years ago

marekventur commented 4 years ago

Hi!

Would it be possible to release a patch-version level release for this?

I'm especially excited for "object-keys": "^1.1.1", which should get rid of some of the warnings we're currently seeing in firefox.

Please let me know if I can be of any help with this!

Cheers, Marek

ljharb commented 4 years ago

The semver range on the dependency uses ^, so anything in the v1 line automatically satisfies the dependency. If you're not using a lockfile, you get this for free; if you are, try just npm install --save object.assign which I believe will update all of its transitive deps to the latest?

marekventur commented 4 years ago

sorry, a lock file was the problem. Thank you!