UglifyJS 3.1.5 release, JavaScript parser / mangler / compressor / beautifier toolkit
UglifyJS v3.1.5 has been released, UglifyJS is a JavaScript parser, parsing, compression, and landscaping toolkit:
- A parser that generates abstract syntax trees (AST) from JavaScript code.
- A code generator that outputs JavaScript code from AST, and provides the option to get source routes.
- compressor (optimizer) – it uses the transformer API to optimize the AST to a minimum
- mangler – Reduces the name of the local variable to (usually) a single letter
- scope analyzer – it is used to extend the AST tool, which contains the definition/reference variable location information
- tree walker – A simple API that allows you to perform certain operations on each node in the AST
- tree transformer – another API for converting trees
UglifyJS 3.0.0 version of the need to pay special attention to is:
- uglify-js@3.x has a new API and CLI and is not backward compatible uglify-js@2.x
The version does not find a specific update log, see the release list for details.