-
Notifications
You must be signed in to change notification settings - Fork 2k
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Use Object.assign
instead of deprecated util._extend
#1666
base: master
Are you sure you want to change the base?
Conversation
Resolves: ``` [DEP0060] DeprecationWarning: The `util._extend` API is deprecated. Please use Object.assign() instead. ``` When using Node.js 22
+1 |
When should we expect updated version with required changes for fix of this warning. |
so, when we can use the updated version 😂 |
Ping @indexzero |
Any release happening for this? |
What would it take to get this merged? |
Nice that this got merged. Would be awesome with a release now been a few years :) @jcrugzz is one in the works? or prob not happening? should we be using master instead? |
When building an app using Vite, there is this deprecationw arning when using Node.js 22:
This PR resolves that.
Object.assign
is supported since Node.js 4.