At the moment, there's a stand-alone validatePlugin() method which is called on each plugin as v8r loads them. Would it make more sense to move that to BasePlugin.constructor() ? I think that would improve the process of developing plugins that live in their own repo as you can easily ensure your plugin passes validation checks in the plugin's test suite.
At the moment, there's a stand-alone
validatePlugin()
method which is called on each plugin as v8r loads them. Would it make more sense to move that toBasePlugin.constructor()
? I think that would improve the process of developing plugins that live in their own repo as you can easily ensure your plugin passes validation checks in the plugin's test suite.