|
|
|
|
|
by amgreg
398 days ago
|
|
I think you are conflating the Closure Library with the Closure Compiler. They are related but not identical. The Compiler, I think, is what makes it difficult to use externs; its “advanced optimizations” can and often does break libraries that weren’t written with the Compiler’s quirks in mind. But advanced optimizations is an option; if you don’t need aggressive minification, function body inlining, etc. you can opt out. Shadow CLJS has made working with external libraries quite easy and IIRC it lets you set the compilation options for your libraries declaratively. |
|
But can the compiler be used without the library? Or can the library be used without the compiler/would it still be beneficial?