Skip to content

Latest commit

 

History

History
23 lines (18 loc) · 510 Bytes

File metadata and controls

23 lines (18 loc) · 510 Bytes

Support Glimmer's named blocks (#11899 by @duailibe)

Prettier already supported this feature, but it converted empty named blocks to self-closing, which is not supported by the Glimmer compiler.

See: Glimmer's named blocks.

// Input
<Component>
  <:named></:named>
</Component>

// Prettier stable
<Component>
  <:named />
</Component>

// Prettier main
<Component>
  <:named></:named>
</Component>