diff --git a/CHANGELOG.md b/CHANGELOG.md index 145a5f4029..6b2136e4a2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -270,6 +270,15 @@ function first(...values) { } ``` +* `babel-generator` + * [#4646](https://github.com/babel/babel/pull/4646) Change babel-generator to output `boolean` instead of `bool` for the `BooleanTypeAnnotation` AST node. ([@existentialism](https://github.com/existentialism)) + +```js +var a: Promise[]; +// instead of +var a: Promise[]; +``` + * `babel-core` * [#4685](https://github.com/babel/babel/pull/4685) Better error messaging when preset options are given without a corresponding preset. ([@kaicataldo](https://github.com/kaicataldo))