mattrogowski
Well-known member
- Affected version
- 2.2.6
Might not be classed as a bug but is an issue one way or another.
This means it's currently impossible to build addons that have minified JS.
XF\Service\AddOn\JsMinifier
makes a cURL request to https://closure-compiler.appspot.com/compile
, which is currently throwing a 503 error and saying Over Quota This application is temporarily over its serving quota. Please try again later.
This means it's currently impossible to build addons that have minified JS.
xf-addon:build-release
fails with Unexpected error while minifying JS: Empty result provided by the compiler.
It'd probably be preferable to just allow a build without minification, or at least flag that it’s failed because this service is down, otherwise devs need to dig through the core code to figure out why it’s broken. Maybe it could just build without minification and output a warning on the CLI. Removing minification from the build.json gets around the issue, but not an obvious solution unless you dig through the code, and not a long term fix if this service is down for a while/goes away completely.