{"library":"run-plugin-webpack","title":"run-plugin-webpack","description":"Provides a basic class for creating Webpack plugins. Version 1.0.0 offers a straightforward structure to extend and implement the `apply` method. Released as an initial version with minimal documentation. Differentiates by being a minimal base class for Webpack plugin development.","language":"javascript","status":"active","last_verified":"Sat Apr 25","install":{"commands":["npm install run-plugin-webpack"],"cli":null},"imports":["import { RunPluginWebpack } from 'run-plugin-webpack'","import RunPluginWebpack from 'run-plugin-webpack'","import { RunPluginWebpack } from 'run-plugin-webpack'"],"auth":{"required":false,"env_vars":[]},"quickstart":{"code":"import { RunPluginWebpack } from 'run-plugin-webpack';\n\nclass MyPlugin extends RunPluginWebpack {\n  apply(compiler) {\n    compiler.hooks.done.tap('MyPlugin', () => {\n      console.log('Build completed!');\n    });\n  }\n}\n\nmodule.exports = MyPlugin;","lang":"javascript","description":"Shows how to extend RunPluginWebpack to create a custom Webpack plugin.","tag":null,"tag_description":null,"last_tested":null,"results":[]},"compatibility":null}