ExamplePlugin.js 212 B

12345678910
  1. class ExamplePlugin {
  2. apply(compiler) {
  3. compiler.plugin("run", (compiler, callback) => {
  4. console.log("Webpack is running our plugin");
  5. callback();
  6. });
  7. }
  8. }
  9. module.exports = ExamplePlugin;