Skip to content

Commit 5f9d1c6

Browse files
committed
Fix source map generation.
1 parent e84888b commit 5f9d1c6

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# jsonld ChangeLog
22

3+
### Fixed
4+
- Fix source map generation.
5+
36
## 1.2.0 - 2018-12-11
47

58
### Notes

webpack.config.js

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -121,13 +121,14 @@ outputs.forEach((info) => {
121121
devtool: 'cheap-module-source-map',
122122
plugins: [
123123
new webpack.optimize.UglifyJsPlugin({
124+
//beautify: true,
124125
compress: {
125126
warnings: true
126127
},
127128
output: {
128129
comments: false
129-
}
130-
//beautify: true
130+
},
131+
sourceMap: true
131132
})
132133
]
133134
});

0 commit comments

Comments
 (0)