Files
webtorrent-desktop/bin
Feross Aboukhadijeh 39570bd4d7 Replace babel with bublé
Pros of bubel over babel:

- No configuration (a la standard)
- Runs twice as fast, for quicker development
- Converts everything to ES5 (which is likely to be faster than ES6,
untested)
- Easy to swap Babel back in -- low commitment

Cons:
- Less battle-tested than Babel, but recommended by React core
developer so probably not too bad
- No babel plugin support, but we're not using that right now anyway.
Can switch back to babel if we need that later

BEFORE:

$ time npm run build

> webtorrent-desktop@0.16.0 build /Users/feross/code/webtorrent-desktop
> babel --quiet src --out-dir build

npm run build  3.07s user 0.27s system 115% cpu 2.902 total

AFTER:

$ time npm run build

> webtorrent-desktop@0.16.0 build /Users/feross/code/webtorrent-desktop
> buble src --output build

npm run build  1.38s user 0.16s system 114% cpu 1.343 total
2016-09-20 15:21:17 -07:00
..
2016-07-26 16:13:51 -07:00
2016-09-01 19:52:37 -07:00
2016-07-22 13:06:55 -07:00
2016-09-20 15:21:17 -07:00
2016-08-27 21:40:02 +03:00
2016-03-21 23:33:31 -07:00
2016-03-21 23:33:31 -07:00
2016-03-21 23:33:31 -07:00
2016-08-23 00:30:56 -07:00