Skip to content

stovmascript/closure-compiler-webpack-plugin

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

38 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Closure Compiler plugin for webpack

Prerequisites

  • Java 7 or higher
  • Build tools required by node-gyp for your platform

Installation

npm install closure-compiler-webpack-plugin

Example

// webpack.config.js
var ClosureCompilerPlugin = require('closure-compiler-webpack-plugin');

module.exports = {
    entry: {
        core: './core',
        home: './home'
    },
    output: {
        filename: '[name].min.js'
    },
    devtool: 'source-map',
    plugins: [
        new ClosureCompilerPlugin()
    ]
};

Options

Use Closure Compiler's flags.

// webpack.config.js
...

    plugins: [
        new ClosureCompilerPlugin({
            compilation_level: 'ADVANCED',
            create_source_map: false
            // Use 'create_source_map: false' to override your webpack 
            // config. Otherwise, anything you set for this option will be 
            // ignored in favour of your 'devtool' and filename configuration.
        })
    ]

...

For a list of available options:

java -jar node_modules/closure-compiler-webpack-plugin/node_modules/google-closure-compiler/compiler.jar --help

Shortcomings

Here are some notes, where this package could be improved. Feel free to submit PRs :)

  • For some reason, the end event from the Closure Compiler stdout stream for the output JS isn't being triggered. From my investigation, it doesn't seem to be connected to the Nailgun wrapper, but rather a problem of Closure Compiler itself. A pretty ugly hack is used to work around this issue.
  • Unlike the built-in UglifyJsPlugin, this one is heavily stream/event based, so there is some state tracking involved to signal when the last file in the compilation was processed. A promise is used, but it still doesn't seem very pretty.

About

🔪 Google Closure Compiler plugin for webpack built on the Nailgun JVM.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages