Honeybadger's Webpack Source Map Plugin
This is a webpack plugin to upload javascript
sourcemaps to Honeybadger's
API endpoint for source maps.
Word Up! to the thredUP development team for a
similar webpack plugin they have authored.
Installation
Installing via Node.js
npm install @honeybadger-io/webpack --save-dev
Example webpack.config.js
const HoneybadgerSourceMapPlugin = require('@honeybadger-io/webpack')
const ASSETS_URL = 'https://cdn.example.com/assets';
const webpackConfig = {
plugins: [new HoneybadgerSourceMapPlugin({
api_key: 'abc123',
revision: 'master',
assets_url: ASSETS_URL
})]
}
Configuration
words
Contributing
- Fork it.
- Create a topic branch
git checkout -b my_branch
- Commit your changes
git commit -am "Boom"
- Push to your branch
git push origin my_branch
- Send a pull request
Development
Install the required npm packages with npm install
. Write code. Run tests npm test
. Repeat.
After that you can
The Honeybadger's Webpack Source Map Plugin is MIT licensed. See the
MIT-LICENSE
file in this repository for details.