-
Notifications
You must be signed in to change notification settings - Fork 779
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
fix: Fixed deepmerge module export naming issue #935
Conversation
Can it be merged please? |
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.
Any thoughts on this one @adamreisnz?
@@ -7,7 +7,7 @@ const EmailAddress = require('./email-address'); | |||
const toCamelCase = require('../helpers/to-camel-case'); | |||
const toSnakeCase = require('../helpers/to-snake-case'); | |||
const deepClone = require('../helpers/deep-clone'); | |||
const merge = require('deepmerge'); | |||
const deepmerge = require('deepmerge'); |
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.
For consistency, how about deepMerge
?
Interesting bug, seems like this is something that should be fixed in Webpack ideally, as we should be free to call our variables however we want, without it affecting the build. But happy with this change if it fixes the issue for the time being, either |
Thanks for weighing in Adam! |
Hello @chrisamador, |
Hi there. Is there any chance that this package can be deployed more often and not every 6 months or so as we need some of the bugs fixes. For example my mails are broken because of this issue. Unfortunately I can't downgrade Webpack because I'm using the Angular CLI which has Webpack as a peer dependency which means I have to use the version that they provide. So I'm stuck now and based on the release schedule for this project I'm still going to wait a long time is that right? Thanks for fixing these issues. |
I'm in the same situation and would really a appreciate a new release with this fix in. |
Hi! I'm also hitting this bug, and it's preventing us from using sendgrid. Any eta or workaround? |
@thinkingserious would it be possible to publish a new version with this fix included? It's blocking us as well. |
Releasing soon ... |
Fixes #899
Checklist
Short description of what this PR does:
This PR fixes webpack's interpolation issue with the deepmerge package. Related to the changes made to deepmerge. Renaming
merge
todeepmerge
fixes the issue.