We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e84888b commit 5f9d1c6Copy full SHA for 5f9d1c6
CHANGELOG.md
@@ -1,5 +1,8 @@
1
# jsonld ChangeLog
2
3
+### Fixed
4
+- Fix source map generation.
5
+
6
## 1.2.0 - 2018-12-11
7
8
### Notes
webpack.config.js
@@ -121,13 +121,14 @@ outputs.forEach((info) => {
121
devtool: 'cheap-module-source-map',
122
plugins: [
123
new webpack.optimize.UglifyJsPlugin({
124
+ //beautify: true,
125
compress: {
126
warnings: true
127
},
128
output: {
129
comments: false
- }
130
- //beautify: true
+ },
131
+ sourceMap: true
132
})
133
]
134
});
0 commit comments