Reload single plugin on auto-update
Summary: Implemented a way for re-loading single plugin on auto-update. This make it possible to apply update without full Flipper restart. Reviewed By: mweststrate Differential Revision: D23729972 fbshipit-source-id: ed30f7cde5a0537945db0b5bb6969ae8fde42cb6
This commit is contained in:
committed by
Facebook GitHub Bot
parent
5e979403a0
commit
0982dc06a0
@@ -268,8 +268,8 @@ export default class Client extends EventEmitter {
|
||||
});
|
||||
}
|
||||
|
||||
supportsPlugin(Plugin: ClientPluginDefinition): boolean {
|
||||
return this.plugins.includes(Plugin.id);
|
||||
supportsPlugin(pluginId: string): boolean {
|
||||
return this.plugins.includes(pluginId);
|
||||
}
|
||||
|
||||
isBackgroundPlugin(pluginId: string) {
|
||||
|
||||
Reference in New Issue
Block a user