plovr icon indicating copy to clipboard operation
plovr copied to clipboard

plovr: a Closure build tool

Results 10 plovr issues
Sort by recently updated
recently updated
newest added

The `goog.forwardDeclare` function is deprecated and is actively cleaned up with `goog.requireType`. When building with version v20200614 (June 17th 2020), you'll get the following erros: ``` /closure/goog/events/eventhandler.js:55: ERROR - [JSC_MISSING_MODULE_OR_PROVIDE]...

The current plovr RAW mode inserts all dependency files with `` element via `document.write()`. However, a `Module *** has been loaded incorrectly` error occurs at `goog.module()` and the load fails....

The current plovr RAW mode does not support the module_flag parameter of goog.addDependency(). https://github.com/bolinfest/plovr/blob/952e2b151713aaecf570c2e24349465a056e5a9f/src/org/plovr/Manifest.java#L485-L493 Closure-Library now takes module_flag as the 4th argument and can now specify module,lang. If module does...

It's enabled by default in CLI, but disabled in API (CompilerOptions). https://github.com/google/closure-compiler/blob/4d7a626b9a9796fbce17577c23d92ef2e80a2c5b/src/com/google/javascript/jscomp/CompilerOptions.java#L915 So polyfill is not available with plovr now. I eager it!

After watching https://www.youtube.com/watch?v=0pgERydGyqo&index=6&list=PLxNYxgaZ8RseY0KmkXQSt0StE71E7yizG I was wondering if there's any thought / action on implementing bazel rules for plovr? It seems like there would be a big speedup from parallelization and...

Hello! [v20151216](https://github.com/google/closure-compiler/wiki/Releases#december-16-2015-v20151216) of Closure Compiler (released after the version which officially started supporting ES6) understands ES6 modules. It also permits the intermingling of ES6 modules and "traditional" Closure JS files....

I've adopted something like: ``` find src/main/java -name '*.java' | xargs java -jar ./bin/google-java-format-0.1-alpha.jar --aosp --replace ``` as a precommit hook for java projects. Curious if there is any interest...

Hi @nicks , Is it possible to generate one artifact per locale, provided a list of locales? The near-term question is about using the date and number formatting functions pruned...

So imagine that my friend send this super cool JS library that was done with Plovr and uses modules. He sends me the compiled js so I just have to...

Background: I work on a project with 150k LOC. It uses Closure and four other libraries, all compiled using plovr. SIMPLE mode output is over 6MB. When this code used...