-
Notifications
You must be signed in to change notification settings - Fork 57
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
[MM-57323] Update node/npm to match webapp #700
Conversation
You always find ways to cheat stats in your favor 😒 |
@streamer45 See, stats change our behaviour and our reactions. |
Your performance is defined by those stats so better keep them if you want to be around for longer :p |
# Conflicts: # webapp/package-lock.json # webapp/package.json
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.
Thanks, apologies for the delay on this.
@@ -369,7 +372,7 @@ export function incomingCallOnChannel(channelID: string, callID: string, callerI | |||
await dispatch(getProfilesByIdsAction([callerID])); | |||
} | |||
|
|||
await dispatch({ |
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.
So dispatching is always synchronous or there's more to it?
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.
Nope, dispatching is async, it's just that putting await dispatch
at the return is useless/redundant (since an async function returns a promise immediately, so awaiting it does nothing).
@@ -17,7 +17,7 @@ if (NPM_TARGET === 'debug' || NPM_TARGET === 'debug:watch') { | |||
|
|||
const plugins = [ | |||
new webpack.ProvidePlugin({ | |||
process: 'process/browser', | |||
process: 'process/browser.js', |
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.
Hope this wasn't too painful to figure out 😬
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.
It was touch and go there for a bit (my sanity)
@cpoile One thing I noticed is that my local env is generating a different
|
@streamer45 Try now -- I might have been running into an issue where I was running |
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, let's get it merged because all this moving from one version to another locally is driving me nuts :p
Summary
Ticket Link