·
162 commits
to main
since this release
Minor Changes
-
70bb7a1: BREAKING CHANGE: Update to latest plugins manager to get type safe options
There is no longer a name string as a key for a plugin. It is identified by it's function/class. You will need to adjust your code if you are adding or adjusting plugins.
- addPlugin({ name: 'my-plugin', plugin: myPlugin, options: { myFlag: true }, location: 'top' }); + addPlugin(myPlugin, { myFlag: true }, { location: 'top' }); - adjustPluginOptions('my-plugin', { myFlag: true }); + adjustPluginOptions(myPlugin, { myFlag: true });
For more details please see the Changelog of the plugins-manager package.