Skip to content

Commit

Permalink
Adding source-maps to the distribution files
Browse files Browse the repository at this point in the history
  • Loading branch information
tarciosaraiva committed Jun 5, 2016
1 parent b2acc03 commit a66fd64
Show file tree
Hide file tree
Showing 8 changed files with 2,776 additions and 2,767 deletions.
3 changes: 2 additions & 1 deletion .babelrc
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
{
"presets": ["es2015"]
"presets": ["es2015"],
"compact": false
}
4 changes: 3 additions & 1 deletion config/webpack.node.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,8 @@ module.exports = {
plugins: [
new webpack.DefinePlugin({ 'global.GENTLY': false }),
new webpack.IgnorePlugin(/vertx/),
new webpack.optimize.DedupePlugin(),
new webpack.NoErrorsPlugin()
]
],
devtool: 'source-map'
}
4 changes: 3 additions & 1 deletion config/webpack.web.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,8 @@ module.exports = {
plugins: [
new webpack.DefinePlugin({ 'global.GENTLY': false }),
new webpack.IgnorePlugin(/vertx/),
new webpack.optimize.DedupePlugin(),
new webpack.NoErrorsPlugin()
]
],
devtool: 'source-map'
}
Loading

0 comments on commit a66fd64

Please sign in to comment.