You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Nov 24, 2017. It is now read-only.
When the underlying minifier runs, it "silently fails" as Juicer returns with a 0 exit code regardless of the status of the underlying minifier.
If the tool could bubble up any underlying compiler exceptions through a non-zero exit code, these sort of compiler failures can be programmatically detected and dealt with.
Example:
~/ $ juicer merge lib/jquery/jquery/jquery.js --skip-verification
[ERROR] 4051:32:missing name after . operator
... snip ...
[ERROR] 1:0:Compilation produced 30 syntax errors.
org.mozilla.javascript.EvaluatorException: Compilation produced 30 syntax errors.
... snip ...
at com.yahoo.platform.yui.compressor.Bootstrap.main(Bootstrap.java:21)
Produced lib/jquery/jquery/jquery.min.js from
lib/jquery/jquery/jquery.js
~/ $ echo $?
0
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
When the underlying minifier runs, it "silently fails" as Juicer returns with a 0 exit code regardless of the status of the underlying minifier.
If the tool could bubble up any underlying compiler exceptions through a non-zero exit code, these sort of compiler failures can be programmatically detected and dealt with.
Example:
~/ $ juicer merge lib/jquery/jquery/jquery.js --skip-verification
[ERROR] 4051:32:missing name after . operator
... snip ...
[ERROR] 1:0:Compilation produced 30 syntax errors.
org.mozilla.javascript.EvaluatorException: Compilation produced 30 syntax errors.
... snip ...
at com.yahoo.platform.yui.compressor.Bootstrap.main(Bootstrap.java:21)
Produced lib/jquery/jquery/jquery.min.js from
lib/jquery/jquery/jquery.js
~/ $ echo $?
0
The text was updated successfully, but these errors were encountered: