v6.18.0 changelog fixes [skip ci]

This commit is contained in:
Henry Zhu 2016-10-24 17:36:07 -04:00 committed by GitHub
parent 12f9cd0826
commit a6ea9111a5

View File

@ -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<boolean>[];
// instead of
var a: Promise<bool>[];
```
* `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))