-
-
Notifications
You must be signed in to change notification settings - Fork 9.6k
Fix deprecated warning in package.json export module (fix #2047) #2048
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
Conversation
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.
Looks good 😄 it works for me both node 16 and node 12
Thanks! Didn't thought the fix was this easy. |
I have the same |
@kiaking is possible to implement to version 3.x? |
Looks as though this change was never published? |
Looks like this is already fixed in the 3.x branch, any chance of getting a release cut? |
same problem here |
waiting for a fix (3.6.2) |
Would love to see this be released in a |
It's been about a year the fix has been merged, any chance of having a patch release that includes this fix ? :) |
is any plan update vuex to 3.6.3? |
Would appreciate the update on 3.6.3 |
As mentioned in #2047
Using the
"./": "./"
is being deprecated and it should be changed to"./*": "./*"
in the future.Adding both to the
package.json
will make it ready for the deprecation and remove theDeprecationWarning
in the current version.