We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1949817 commit 7c184e6Copy full SHA for 7c184e6
1 file changed
src/providers/plugins/plugins.ts
@@ -166,6 +166,8 @@ export class Plugins {
166
if ('setOptions' in plugin) {
167
plugin.setOptions(options[AllPlugins]);
168
}
169
+
170
+ this.options[plugin.getName()] = options[AllPlugins];
171
});
172
173
delete options[AllPlugins];
@@ -182,6 +184,8 @@ export class Plugins {
182
184
183
185
plugin.setOptions(options[pluginName]);
186
187
188
+ this.options[plugin.getName()] = options[pluginName];
189
190
191
this.options = options;
0 commit comments