-
We can add a step to the compiler at https://github.com/systemjs/builder/blob/master/compilers/compiler.js, that returns `source, sourceMap, minifiedSource, minifiedSourceMap` by running another compi…
-
Crashes when used in conjunction with babili
TypeError: src/SymbolicExecution.js: Property alternate of ConditionalExpression expected node to be of a type ["Expression"] but instead got null
…
-
See https://github.com/babel/babili/issues/139
Currently each plugin has its own version number, which makes it difficult to version babili-standalone as a whole.
cc @hzoo
-
Babili works with modern JS and may be able to get us minified code that doesn't need to completely transform away ES6+ niceness. 😄
https://www.npmjs.com/package/babili-webpack-plugin
-
(and when it does everything that this plugin does, but that appears to be so)
https://github.com/babel/babili
-
The current build sequence for a typical webpack project is `transpile -> bundle -> minify`. As babili doesn't traverse through Objects and its properties (yet), there will not be much optimizations o…
-
Hello,
Thanks for you work.
I tried today to test your projet, I got this warning
```sh
npm WARN deprecated babel-preset-babili@0.0.12: babili has been renamed to babel-minify. Please update…
-
It'd be nice to be able to toggle Babili transforms in REPL
-
Input:
```javascript
'Hagrid: "You\'re a wizard, Harry"';
"Hagrid: \"You're a wizard, Harry\"";
console.log('Hagrid: "You\'re a wizard, Harry"');
console.log("Hagrid: \"You're a wizard, Harry\"")…
-
If you're using babili, it's sub-optimal compared to [BabiliWebpackPlugin](https://webpack.js.org/plugins/babili-webpack-plugin/) ([why](https://webpack.js.org/plugins/babili-webpack-plugin/#why)).
…