Closure Compiler: High-level overview of a compilation job
closuretools.blogspot.com
Closure Compiler: High-level overview of a compilation job
1–10 of 11 posts
Re: Closure Compiler: High-level overview of a compilation job
#2Re: Closure Compiler: High-level overview of a compilation job
#3It would be cool if this could be used with standard NPM modules in an easy way.
Re: Closure Compiler: High-level overview of a compilation job
#4It would be cool if this could be used with standard NPM modules in an easy way.
Would this work for you? https://www.npmjs.com/package/google-closure-compiler
Re: Closure Compiler: High-level overview of a compilation job
#5Earlier quoted context omitted.
Would this work for you? https://www.npmjs.com/package/google-closure-compiler
Didn't know it was used so much out of Google, that's a lot of downloads and that just for NPM, I would guess maven and direct downloads are even bigger? not counting clojurescript and scalajs which bundle closure in their compiler.
Re: Closure Compiler: High-level overview of a compilation job
#6Earlier quoted context omitted.
Didn't know it was used so much out of Google, that's a lot of downloads and that just for NPM, I would guess maven and direct downloads are even bigger? not counting clojurescript and scalajs which bundle closure in their compiler.
Its not very many. My own package gets way more traffic than that months after I pulled out of NPM. https://www.npmjs.com/package/prettydiff
Re: Closure Compiler: High-level overview of a compilation job
#7[0]: https://developers.google.com/closure/compiler/docs/api-tuto...
Re: Closure Compiler: High-level overview of a compilation job
#8[0]: https://github.com/angular/tsickle
[1]: https://github.com/google/closure-compiler/wiki/Type-Based-P...
Re: Closure Compiler: High-level overview of a compilation job
#9The closure compiler is one of these engineering secrets that I wish more people knew about. The advanced compilation with dead code elimination [0] is insane. It needs a bit of extra work on top to fully utilise but you get a payoff that you can't achieve with other minifiers. [0]: https://developers.google.com/closure/compiler/docs/api-tuto...
Re: Closure Compiler: High-level overview of a compilation job
#10There also an amazing tool[0] that processes TypeScript and adds JSDoc annotations for closure compiler, so it can optimize way much better[1] [0]: https://github.com/angular/tsickle [1]: https://github.com/google/closure-compiler/wiki/Type-Based-P...