-
https://github.com/babel/babili
-
Example below
Since each thing is independent it doesn't make sense to have a changelog entry per release since each one is seperate.
---
## Changelog for 2016-08-31
#### Bug Fix
- `babel-preset-bab…
-
Hey first of all, thanks for putting order into the chaos which is the current state of typescript-treeshaking!
I only have one question.
So the reason the Babili build is only transpiling to ES20…
-
Having this option enabled by default in `babili` preset can cause a lot of issues, especially when using Babili on the server side with express.js, which relies on `arguments.length`, because it will…
-
I was experimenting with `babili` and found that the minified code it produces is significantly larger than `closure` (100 KiB vs 120 KiB). As it turns out, the problem is caused by the way `babili` h…
tyrak updated
6 years ago
-
I'm using `gulp-babel` with the `babili` plugin, and the `gulp-requirejs-optimize` module to concat files.
Here's the relevant part of how I'm calling it:
```
return gulp.src(['source/js/main.js'…
thany updated
6 years ago
-
Is the CLI versioned separately to the plugins? As an example, `babel-plugin-minify-dead-code-elimination` was changed more recently than `babili`, yet `babel-plugin-minify-dead-code-elimination` in t…
-
It appears, all the benchmarks listed aren't run on ES2015 code.
Imagine NodeJS or a modern browser as a target for code that contains classes, rests, spreads, etc - how does code optimized with ba…
-
I used devtool: 'source-map' in webpack config and did not use babili-webpack-plugin.
Here are some code of my source file:
```
var b = 1024;
console.log(10)
```
All worked great, I could set …
-
I think Babili could save a lot of bytes with a plugin that converts functions that do not make use of `this` to arrow functions:
Input (34):
```
function foo() {
return 'bar';
}
```
Outp…