Skip to content
This repository has been archived by the owner on Aug 18, 2020. It is now read-only.

Commit

Permalink
Update changelog.md
Browse files Browse the repository at this point in the history
  • Loading branch information
kaelig committed Jan 3, 2018
1 parent 12ebc1d commit 310405d
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,21 @@

## Unreleased

### Changed
* Updated dependencies to their latest versions
* Updated prettier to 1.9.2, introducing a change in function parens style (set to `arrowParens: 'always'`):

```js
// Before
const foo = myArray.map(foo => {});

// After
const foo = myArray.map((foo) => {});
```

* Added a `prettier` script: `yarn prettier` now prettifies source files
* Prettified source files using the new config

## [18.3.1] - 2017-12-21

### Changed
Expand Down

0 comments on commit 310405d

Please sign in to comment.