Skip to content
This repository was archived by the owner on Jul 31, 2023. It is now read-only.

V 0.10.0

Choose a tag to compare

@adrianjost adrianjost released this 05 Sep 16:08
· 226 commits to master since this release

💥 Breaking Change

Implements the improvement from #165
Indentations from string interpolation will now be handled more gracefully.

Example:

const a = dedent`2
             3
           4`;

const b = `1
     ${a}
     5`;

Will now be handled like:

const b = `1
     2
       3
     4
     5`;

Instead of:

const b = `1
     2
  3
4
     5`;

This improvement was implemented by @calculuschild in #227. Thank you!