Skip to content

Commit

Permalink
Add CHANGELOG note
Browse files Browse the repository at this point in the history
  • Loading branch information
dcyriller committed Apr 29, 2019
1 parent 7b6450d commit 26e6d8e
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions CHANGELOG.unreleased.md
Expand Up @@ -60,3 +60,37 @@ Examples:
test(/** @type {!Array} */ (arrOrString).length);
test(/** @type {!Array} */ (arrOrString).length + 1);
```

- Handlebars: Fix {{else}}{{#if}} into {{else if}} merging ([#6080] by [@dcyriller])

<!-- prettier-ignore --\>
```
// Input
{{#if a}}
a
{{else}}
{{#if c}}
c
{{/if}}
e
{{/if}}
// Output (Prettier stable)
{{#if a}}
a
{{else if c}}
c
e
{{/if}}
// Output (Prettier master)
Code Sample
{{#if a}}
a
{{else}}
{{#if c}}
c
{{/if}}
e
{{/if}}
```

0 comments on commit 26e6d8e

Please sign in to comment.