minify-stream
Version: 
minify javascript in a stream using uglify-js
33 lines (23 loc) • 817 B
Markdown
All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org/).
* Support asynchronous uglify implementations.
  You can now use minify-stream with terser v5:
  ```js
  var minifyStream = require('minify-stream')
  var minifier = minifyStream({ uglify: require('terser') })
  ```
* Unpin default terser version.
* Upgrade default terser version to v4.
* Pin terser to a version that does uses ES5 syntax.
* Update streams dependencies.
* Switch to [terser](https://github.com/fabiosantoscode/terser) as the default uglify module. ([#1](https://github.com/goto-bus-stop/minify-stream/pull/1))
* Now outputs sourcemaps by default
* Initial release