Skip to content
This repository has been archived by the owner on May 19, 2018. It is now read-only.

v6.13.1

Compare
Choose a tag to compare
@hzoo hzoo released this 26 Oct 16:12
· 516 commits to master since this release

v6.13.1 (2016-10-26)

πŸ’… Polish

  • Use rollup for bundling to speed up startup time (#190) (@drewml)
const babylon = require('babylon');
const ast = babylon.parse('var foo = "lol";');

With that test case, there was a ~95ms savings by removing the need for node to build/traverse the dependency graph.

Without bundling
image

With bundling
image

  • add clean command skip ci (Henry Zhu)
  • add ForAwaitStatement (async generator already added) skip ci (Henry Zhu)