roman01la / webpack-closure-compiler

[DEPRECATED] Google Closure Compiler plugin for Webpack
MIT License
464 stars 25 forks source link

Update Readme.md #34

Closed bansawbanchee closed 7 years ago

bansawbanchee commented 7 years ago

Update Readme to document undocumented jar parameter that allows you to specify a custom path to your own compiler.jar file if the one used by the plugin is not working for you.

bansawbanchee commented 7 years ago

You will notice between lines 31-35 of runner.js this option exists already.

if (!options.jar) {
    options.jar = JAR_PATH;
}
args.push('-jar');
args.push(options.jar);
roman01la commented 7 years ago

thanks!