|
Ran
|
Jobs
0
|
Files
0
|
Run time
–
|
Badge
README BADGES
|
push
github
Bump prettier from 3.2.1 to 3.2.2 (#1483) Bumps [prettier](https://github.com/prettier/prettier) from 3.2.1 to 3.2.2. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/prettier/prettier/releases">prettier's releases</a>.</em></p> <blockquote> <h2>3.2.2</h2> <p>🔗 <a href="https://github.com/prettier/prettier/blob/main/CHANGELOG.md#322">Changelog</a></p> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/prettier/prettier/blob/main/CHANGELOG.md">prettier's changelog</a>.</em></p> <blockquote> <h1>3.2.2</h1> <p><a href="https://github.com/prettier/prettier/compare/3.2.1...3.2.2">diff</a></p> <h4>Fix crash when parsing template literal CSS in a JSX style tag using a spread attribute (<a href="https://redirect.github.com/prettier/prettier/pull/15896">#15896</a> by <a href="https://github.com/eelco"><code>@eelco</code></a>)</h4> <p>For example this code would crash before:</p> <!-- raw HTML omitted --> <pre lang="jsx"><code><style {...spread}>{`.{}`}</style> </code></pre> <h4>Fix formatting error on optional call expression and member chain (<a href="https://redirect.github.com/prettier/prettier/pull/15920">#15920</a> by <a href="https://github.com/sosukesuzuki"><code>@sosukesuzuki</code></a>)</h4> <!-- raw HTML omitted --> <pre lang="jsx"><code>// Input a(() => {}, c?.d()); <p>// Prettier 3.2.1 TypeError: Cannot read properties of undefined (reading 'type')</p> <p>// Prettier 3.2.2 a(() => {}, c?.d()); </code></pre></p> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/prettier/prettier/commit/5f2c6df46"><code>5f2c6df</code></a> Release 3.2.2</li> <li><a href="https://github.com/prettier/prettier/commit/cb8004f3f"><code>cb8004f</code></a> Fix formatting error on optional cal... (continued)