Add sourcemaps for rollbar

This commit is contained in:
fragosti
2018-07-09 14:26:05 -07:00
parent e817cd7d43
commit c8bb21d12d
5 changed files with 70 additions and 3 deletions

View File

@@ -1,6 +1,13 @@
const path = require('path');
const webpack = require('webpack');
const UglifyJsPlugin = require('uglifyjs-webpack-plugin');
const RollbarSourceMapPlugin = require('rollbar-sourcemap-webpack-plugin');
const childProcess = require('child_process');
const GIT_SHA = childProcess
.execSync('git rev-parse HEAD')
.toString()
.trim();
module.exports = {
entry: ['./ts/index.tsx'],
@@ -80,6 +87,7 @@ module.exports = {
new webpack.DefinePlugin({
'process.env': {
NODE_ENV: JSON.stringify(process.env.NODE_ENV),
GIT_SHA: GIT_SHA,
},
}),
// TODO: Revert to webpack bundled version with webpack v4.
@@ -92,6 +100,11 @@ module.exports = {
},
},
}),
new RollbarSourceMapPlugin({
accessToken: 'a6619002b51c4464928201e6ea94de65',
version: GIT_SHA,
publicPath: 'https://0xproject.com/',
}),
]
: [],
};