UNPKG

1.84 kBMarkdownView Raw
1## 1.1.2
2 - Enable source maps by default. ([#61](https://github.com/gdborton/webpack-parallel-uglify-plugin/pull/61))
3
4## 1.1.1
5 - Updated uglify dependencies to include recent features/bug fixes.
6
7## 1.1.0
8 - Added babel-code-frame to pretty print SyntaxError messages, this should help in debugging failed minification. ([#45](https://github.com/gdborton/webpack-parallel-uglify-plugin/pull/45))
9
10## 1.0.2
11 - Fix issue with uglifyES options not being applied. ([#42](https://github.com/gdborton/webpack-parallel-uglify-plugin/pull/42))
12
13## 1.0.1
14
15 - Delay pruning of the cache until compilation is completely done. ([#41](https://github.com/gdborton/webpack-parallel-uglify-plugin/pull/41))
16
17## 1.0.0
18
19 - Breaking: Updated to [uglify-js](https://github.com/mishoo/UglifyJS2)@3, syntax remains the same, but the options you provide uglifyJS may have changed. ([#31](https://github.com/gdborton/webpack-parallel-uglify-plugin/pull/31))
20 - Breaking: Plugin now ignores your config's `devtool` option. Enable source maps by initializing the plugin with `sourceMap: true`. ([#23](https://github.com/gdborton/webpack-parallel-uglify-plugin/pull/23))
21 - New: Added [uglify-es](https://github.com/mishoo/UglifyJS2/tree/harmony) support. To use, provide the plugin with uglifyES options instead of uglifyJS. ([#35](https://github.com/gdborton/webpack-parallel-uglify-plugin/pull/35))
22 - Fix: `workerCount` option is no longer being ignored. ([#33](https://github.com/gdborton/webpack-parallel-uglify-plugin/pull/33))
23
24## 0.4.2
25
26 - New: Added this change log.
27 - New: Added support for test/include/exclude options. ([#26](https://github.com/gdborton/webpack-parallel-uglify-plugin/pull/26))
28 - Fix: Addressed issue with creating too many event listeners for child processes. ([#25](https://github.com/gdborton/webpack-parallel-uglify-plugin/pull/25))