-
Task
-
Resolution: Fixed
-
L3 - Default
-
None
-
None
-
None
Note: This is a refactoring.
Previously, multiple plugins could be created using named exports. Because we do not use the names of the exports and need kind of a hack to iterate over them, we should export an array as default.
A single Plugin does not have to be wrapped in an array.
// Is: export {pluginA, pluginB}; // Should be export default [pluginA, pluginB];