ClosureJavascriptFramework
ClosureJavascriptFramework copied to clipboard
A group of plug-ins that can be used in conjunction with maven to execute the Google Closure Compiler on JavaScript code. This Framework allows for scaling and modularity.
In `v1.18.1` we use closure compiler version `v20131014` by default. There has been several releases since then (see https://github.com/google/closure-compiler/wiki/Releases). We should consider upgrading the closure compiler and start plan for...
When I ran with ADVANCED_OPTIMIZATIONS, I got errors like: closure/closure/goog/events/events.js:896: ERROR - Bad type annotation. Unknown type goog.debug.ErrorHandler Suggesting this problem: https://code.google.com/p/closure-library/wiki/FrequentlyAskedQuestions#When_I_compile_with_type-checking_on,_I_get_warnings_about_" Solved by including closure-library/closure/goog/deps.js. I noticed in the...
Probably not a common situation but still might be a symptom of small issue, I have a maven project with several modules, one of them is of type **war** and...
Is there any way how to configure fain grained levels of warnings? See https://github.com/google/closure-compiler/wiki/Warnings For example I have run into issue where in the source code of closure-library are mismatched...
Is this result of copy and paste? https://github.com/jlgrock/ClosureJavascriptFramework/blob/master/closure-compiler-maven-plugin/src/main/java/com/github/jlgrock/javascriptframework/closurecompiler/JsClosureCompileMojo.java#L220 It is identical to https://github.com/jlgrock/ClosureJavascriptFramework/blob/master/closure-compiler-maven-plugin/src/main/java/com/github/jlgrock/javascriptframework/closurecompiler/JsClosureCompileMojo.java#L228
When adding other JSAR maven projects, if you have an externDependencies folder, it will create a never-ending nesting of this folder unto itself. Not sure where this is in the...
The goal would be to allow users to keep whole closure-library sources as part of the project resources (like in `vendor` folder) and have it used by CJF maven testing...
In many cases, it would be nice if there was a way to specify the version of the closure-library. Right now, the version packaged with the framework is not adjustable....
Would it make sense to implement support for https://github.com/nanaze/jscomprun for unit testing?
The `goog.testing.ContinuationTestCase` can be used for testing of async components. The problem, however, is that tests based on ContinuationTestCase do not output DIV element that can be parsed into `TestCaseStart`....