Skip to content

babili@0.0.7

Compare
Choose a tag to compare
@hzoo hzoo released this 27 Oct 19:30
· 502 commits to master since this release

Changelog for 2016-10-07

  • babel-plugin-minify-dead-code-elimination@0.0.4
  • babel-plugin-minify-guarded-expressions@0.0.3
  • babel-preset-babili@0.0.5
  • babili@0.0.7

Bug Fix

  • babel-plugin-minify-guarded-expressions

Deps

  • babel-plugin-dead-code-elimination

Changelog for 2016-09-30

  • babel-plugin-minify-dead-code-elimination@0.0.3
  • babel-preset-babili@0.0.4
  • babili@0.0.6

Bug Fix

Should fix windows support for the cli.

  • babel-plugin-minify-dead-code-elimination
// bail out when destructuring with a variable
const me = lyfe => {
  const [swag] = lyfe;
  return swag;
};
// var hoisting but not let/const
function foo() {
  a = 1;
  return a;
  var a;
}