UNPKG

675 BMarkdownView Raw
1# Changelog
2
3## v3.16.1
4
5 - Fixed issue where Terser being imported with `import` would cause it not to work due to the `__esModule` property.
6
7## v3.16.0
8
9 - No longer leaves names like Array or Object or window as a SimpleStatement (statement which is just a single expression).
10 - Add support for sections sourcemaps (IndexedSourceMapConsumer)
11 - Drops node.js v4 and starts using commonJS
12 - Is now built with rollup
13
14## v3.15.0
15
16 - Inlined spread syntax (`[...[1, 2, 3], 4, 5] => [1, 2, 3, 4, 5]`) in arrays and objects.
17 - Fixed typo in compressor warning
18 - Fixed inline source map input bug
19 - Fixed parsing of template literals with unnecessary escapes (Like `\\a`)