-
Notifications
You must be signed in to change notification settings - Fork 24.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Summary: This diff builds on top of the refactor to use `async/await` and adds multi-client support to Hot Module Reloading. Thanks to async/await it's been quite straightforward to add this logic, since the only thing that I've had to do is to create a `Set` with the currently connected clients and passed the specified client to each method that was using the global client before. This closes #14334 Reviewed By: davidaurelio Differential Revision: D5611176 fbshipit-source-id: ec29438887342877c372b61132efada16af58fa5
- Loading branch information
1 parent
f32d0ee
commit 8b2975a
Showing
1 changed file
with
94 additions
and
74 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
8b2975a
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.
Nice