Closure-Compiler is a full optimizing compiler and transpiler. It offers unmatched optimizations, provides type checking and can easily target transpilation to different versions of ECMASCRIPT.
Note: This plugin is a very early beta and currently uses a custom build of closure-compiler while neccessary changes are integrated back into the main compiler repository. Only the java version of closure-compiler is currently supported.
Usage example
----- --------------------- - --------------------------------- --- ---------------------------- ------------ - -- -------- ----- ---- -- -- --- -------- ----- --- ------ -- -- ----------- -------------- -- ------ ---- --
Options
- mode -
STANDARD
(default) orAGGRESSIVE_BUNDLE
. Controls how the plugin utilizes the compiler.
InSTANDARD
mode, closure-compiler is used as a direct replacement for other minifiers as well as most Babel transformations.
InAGGRESSIVE_BUNDLE
mode, the compiler performs additional optimizations of modules to produce a much smaller file, but is not compatible with all input modules.
Compiler Flags
The plugin controls certain compiler flags. The following flags should not be used in any mode:
- module_resolution - A custom resolution mode for webpack is utilized instead of the standard NODE or BROWSER options.
- output_wrapper - The output wrapper is automatically added by either webpack or the plugin
- dependency_mode - Controlled by the plugin mode.
Aggressive Bundle Mode
In this mode, the compiler rewrites CommonJS modules and hoists require calls. Some modules are not compatible with this type of rewritting. In particular, hoisting will cause the following code to execute out of order:
----- --- - -------------- --------------------- ----- --- - --------------
Aggressive Bundle Mode utilizes a custom runtime in which modules within a chunk file are all included in the same scope. This avoids the cost of small modules.
In Aggressive Bundle Mode, a file can only appear in a single output chunk. Use the Commons Chunk Plugin to split duplicated files into a single output chunk.
Tips for Use
- Don&apost use babel - closure-compiler is also a transpiler. If you need features not yet supported by closure-compiler, have babel only target those features.
Maintainers
|
|