-
> The compression is better than Babili and Closure Compiler
Unfortunately this claim is factually not true today, not by a long shot in fact:
https://github.com/leeoniya/domvm/blob/2.x-dev/dist…
-
I'm wanting to minify a project which contains some Emscripten generated asm.js. As babili cannot safely minimise it and Emscripten already minimises the asm.js to a large extent, an option to ignore …
-
This crate fits all my needs up to a feature I'd like to see:
```rust
#[derive(Envconfig)]
struct Config {
#[envconfig(from = "POSTGRESQL_URL", or_from = "POSTGRES_URL")]
pub postgresql…
-
Originally brought up by @spicyj.
Since `'
-
Code might refer to `fn.name`. Uglify, Closure and Babili all mangle function names by default, so *maybe* we should too. Either way we should certainly have the option to preserve function and class …
-
Safari throws a syntax error when declaring a top level for-loop iteration variable the same as a fn parameter
```js
function foo(a){
for(let b=1;;) console.log(b);
console.log(a);
}
```
…
-
La librería producción no debería estar en es5?
Tengo problemas al tratar compilar con webpack en producción
ERROR in app.js from UglifyJs
SyntaxError: Unexpected token: name (options) [./~/@pl…
-
```js
require('babel-core').transform('export default function(foo: string, bar: string = baz()) { }', {plugins:['syntax-flow'],passPerPreset:true,presets:['babili']}).code
```
gives me this:
```j…
-
AFAIK, `this` is not `undefined` in global scope even with strict mode.
-
### Input Code
```js
function foo() {
let a;
{
let a, b;
}
}
```
### Babel Configuration (.babelrc, package.json, cli command)
```js
{
plugins: [function () {
return…