Plugin template
Here is a simple plugin template:
module.exports = api => {
  api.chainWebpack(webpackChain => {
    // Modify the webpack configuration to your needs
  });
  api.registerCommand("commandName", () => {
    // Implementation detail
  })
};
