babel-plugin-minify-dead-code-elimination
Inlines bindings when possible. Tries to evaluate expressions and prunes unreachable as a result.
Updated by @babeljs
babel-plugin-minify-replace
Configurable "search and replace" plugin. Replaces matching nodes in the tree with a given replacement node. For example you can replace process.NODE_ENV with …
Updated by @babeljs
babel-plugin-minify-constant-folding
Tries to evaluate expressions and inline the result.
Updated by @babeljs
babel-plugin-transform-remove-undefined
This removes rvals that are equivalent to undefined wherever possible
Updated by @babeljs
babel-plugin-transform-inline-environment-variables
Inline environment variables.
Updated by @babeljs
babel-plugin-transform-undefined-to-void
Replace references to `undefined` with `void 0`
Updated by @babeljs
babel-plugin-transform-merge-sibling-variables
Merge sibling variables into one.
Updated by @babeljs
babel-plugin-minify-simplify
Simplifies code for minification by reducing statements into expressions and making expressions uniform where possible.
Updated by @babeljs
babel-plugin-minify-type-constructors
Note: Not recommended if full support for IE8 and lower is required. Details
Updated by @babeljs
babel-plugin-minify-numeric-literals
popularShortens numeric literals using scientific notation
Updated by @amasad
babel-helper-to-multiple-sequence-expressions
npm install babel-helper-to-multiple-sequence-expressions --save-dev
Updated by @babeljs
babel-plugin-transform-property-literals
Turn valid property key literals to plain identifiers
Updated by @babeljs
babel-plugin-transform-minify-booleans
Turn boolean literals into !0 for true and !1 for false.
Updated by @babeljs
babel-plugin-transform-simplify-comparison-operators
Convert === and !== to == and != if their types are inferred to be the same.
Updated by @babeljs
babel-plugin-transform-member-expression-literals
Turn valid member expression property literals into plain identifiers
Updated by @babeljs
babel-helper-mark-eval-scopes
Mark scopes for deopt which contain a direct eval call
Updated by @amasad