Webpack plugins for reporting new builds to your dashboard and uploading source maps for deobfuscating stack traces.
npm install --save-dev webpack-bugsnag-plugins
new BugsnagBuildReporterPlugin(build, opts):WebpackPlugin
const { BugsnagBuildReporterPlugin } = require('webpack-bugsnag-plugins')Reports your application's build to BugSnag. It can auto detect source control from .git, .hg and package.json. This plugin hooks into the 'after-emit' event once all output files have been generated by the Webpack compiler. If anything causes the compilation to fail before this step, the build report will not get sent.
Please see our documentation for further details.
new BugsnagSourceMapUploaderPlugin(opts):WebpackPlugin
const { BugsnagSourceMapUploaderPlugin } = require('webpack-bugsnag-plugins')Upload your application's sourcemap(s) to Bugsnag. When Webpack is done producing output, this plugin detects sourcemaps for any output chunks and uploads them to Bugsnag.
Please see our documentation for further details.
These plugins have been tested with webpack versions 3, 4 and 5.
- Search open and closed issues issues for similar problems
- Report a bug or request a feature
- Email [email protected]
All contributors are welcome! See our contributing guide.
This module is free software released under the MIT License. See LICENSE.txt for details.