-
Notifications
You must be signed in to change notification settings - Fork 8
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
Hot-reload using webpack 5 #162
Conversation
Ready for review, all tests are passing |
e3d9db5
to
36bf792
Compare
cc @joaompneves |
@joaompneves you might take a new look to the changes performed |
Adding @tbragaf to the code review since Neves is on vacations |
@@ -0,0 +1,14 @@ | |||
namespace ReactViewControl; | |||
|
|||
public class ModuleDependenciesProviderFactory : IModuleDependenciesProviderFactory { |
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.
public sealed class
public static void SetInstance(IModuleDependenciesProviderFactory factory) { | ||
Instance = factory; | ||
} |
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.
remove
|
||
public class ModuleDependenciesProviderFactory : IModuleDependenciesProviderFactory { | ||
|
||
public static IModuleDependenciesProviderFactory Instance { get; private set; } = new ModuleDependenciesProviderFactory(); |
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.
public static IModuleDependenciesProviderFactory Instance { get; set; } = new ModuleDependenciesProviderFactory();
Instance = factory; | ||
} | ||
|
||
public virtual IModuleDependenciesProvider CreateModuleDependenciesProvider(string sourcePath) { |
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.
public IModuleDependenciesProvider CreateModuleDependenciesProvider(string sourcePath) {
Hey @joaompneves , I will tackle your review in a PR soon |
No description provided.