Skip to content

Commit

Permalink
fix online minification after google updated closure compiler
Browse files Browse the repository at this point in the history
  • Loading branch information
gfwilliams committed Sep 14, 2015
1 parent 9cd7ee2 commit a393c47
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion plugins/minify.js
Expand Up @@ -215,7 +215,8 @@
output_format: "text",
output_info: output_info,
js_code: code,
language : "ECMASCRIPT6" // so no need to mess with binary numbers now. \o/
language : "ECMASCRIPT6", // so no need to mess with binary numbers now. \o/
language_out : "ECMASCRIPT5" // ES6 output uses some now features now that Espruino doesn't like
});
$.post(minifyUrl, minifyObj, function(minifiedCode) {
code = minifiedCode;
Expand Down

0 comments on commit a393c47

Please sign in to comment.