Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bump the format group with 2 updates (#73)
Bumps the format group with 2 updates: [prettier](https://github.com/prettier/prettier) and [esbuild](https://github.com/evanw/esbuild). Updates `prettier` from 3.0.3 to 3.1.0 <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.1.0</h2> <p><a href="https://github.com/prettier/prettier/compare/3.0.3...3.1.0">diff</a></p> <p>🔗 <a href="https://prettier.io/blog/2023/11/13/3.1.0.html">Release note</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.1.0</h1> <p><a href="https://github.com/prettier/prettier/compare/3.0.3...3.1.0">diff</a></p> <p>🔗 <a href="https://prettier.io/blog/2023/11/13/3.1.0.html">Release Notes</a></p> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/prettier/prettier/commit/e8ac9f8d2a1c7083ac4f8a9b960521b62d60c94f"><code>e8ac9f8</code></a> Release 3.1.0</li> <li><a href="https://github.com/prettier/prettier/commit/6a1d4096b9fdc60c93fbcbc90465293906fcd2d0"><code>6a1d409</code></a> chore(deps): update dependency eslint-plugin-regexp to v2 (<a href="https://redirect.github.com/prettier/prettier/issues/15521">#15521</a>)</li> <li><a href="https://github.com/prettier/prettier/commit/f4d93d3d226c67e3b01dbea39ee92d869786953d"><code>f4d93d3</code></a> chore(deps): update dependency esbuild to v0.19.5 (<a href="https://redirect.github.com/prettier/prettier/issues/15630">#15630</a>)</li> <li><a href="https://github.com/prettier/prettier/commit/4fc71a5ce895e8a022970cf4072432a60efb5a10"><code>4fc71a5</code></a> chore(deps): update dependency flow-parser to v0.221.0 (<a href="https://redirect.github.com/prettier/prettier/issues/15637">#15637</a>)</li> <li><a href="https://github.com/prettier/prettier/commit/d452f45c19a8b19087868509fa426f6bd562dfdc"><code>d452f45</code></a> chore(deps): update dependency eslint-plugin-jest to v27.6.0 (<a href="https://redirect.github.com/prettier/prettier/issues/15635">#15635</a>)</li> <li><a href="https://github.com/prettier/prettier/commit/eb84a60ef8f2c5a8ccf909d34560c3ba7beaf5c9"><code>eb84a60</code></a> chore(deps): update dependency <code>@types/estree</code> to v1.0.5 (<a href="https://redirect.github.com/prettier/prettier/issues/15625">#15625</a>)</li> <li><a href="https://github.com/prettier/prettier/commit/2af23eefd07a75dc15782b00435f8caadc00c3ad"><code>2af23ee</code></a> chore(deps): update dependency webpack to v5.89.0 (<a href="https://redirect.github.com/prettier/prettier/issues/15640">#15640</a>)</li> <li><a href="https://github.com/prettier/prettier/commit/8f27c736b3bfbb44583f33f43fb99425cae69783"><code>8f27c73</code></a> chore(deps): update dependency eslint-plugin-unicorn to v49 (<a href="https://redirect.github.com/prettier/prettier/issues/15642">#15642</a>)</li> <li><a href="https://github.com/prettier/prettier/commit/cdc5f5a60b8667284779b963d770861af9c7ee63"><code>cdc5f5a</code></a> chore(deps): update dependency webpack to v5.89.0 (<a href="https://redirect.github.com/prettier/prettier/issues/15639">#15639</a>)</li> <li><a href="https://github.com/prettier/prettier/commit/14607efc39f91adbe6914cb80844643c6dfa3033"><code>14607ef</code></a> chore(deps): update dependency eslint-plugin-n to v16.3.1 (<a href="https://redirect.github.com/prettier/prettier/issues/15636">#15636</a>)</li> <li>Additional commits viewable in <a href="https://github.com/prettier/prettier/compare/3.0.3...3.1.0">compare view</a></li> </ul> </details> <br /> Updates `esbuild` from 0.19.5 to 0.19.8 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/evanw/esbuild/releases">esbuild's releases</a>.</em></p> <blockquote> <h2>v0.19.8</h2> <ul> <li> <p>Add a treemap chart to esbuild's bundle analyzer (<a href="https://redirect.github.com/evanw/esbuild/issues/2848">#2848</a>)</p> <p>The bundler analyzer on esbuild's website (<a href="https://esbuild.github.io/analyze/">https://esbuild.github.io/analyze/</a>) now has a treemap chart type in addition to the two existing chart types (sunburst and flame). This should be more familiar for people coming from other similar tools, as well as make better use of large screens.</p> </li> <li> <p>Allow decorators after the <code>export</code> keyword (<a href="https://redirect.github.com/evanw/esbuild/issues/104">#104</a>)</p> <p>Previously esbuild's decorator parser followed the original behavior of TypeScript's experimental decorators feature, which only allowed decorators to come before the <code>export</code> keyword. However, the upcoming JavaScript decorators feature also allows decorators to come after the <code>export</code> keyword. And with TypeScript 5.0, TypeScript now also allows experimental decorators to come after the <code>export</code> keyword too. So esbuild now allows this as well:</p> <pre lang="js"><code>// This old syntax has always been permitted: @decorator export class Foo {} @decorator export default class Foo {} <p>// This new syntax is now permitted too: export <a href="https://github.com/decorator"><code>@decorator</code></a> class Foo {} export default <a href="https://github.com/decorator"><code>@decorator</code></a> class Foo {} </code></pre></p> <p>In addition, esbuild's decorator parser has been rewritten to fix several subtle and likely unimportant edge cases with esbuild's parsing of exports and decorators in TypeScript (e.g. TypeScript apparently does automatic semicolon insertion after <code>interface</code> and <code>export interface</code> but not after <code>export default interface</code>).</p> </li> <li> <p>Pretty-print decorators using the same whitespace as the original</p> <p>When printing code containing decorators, esbuild will now try to respect whether the original code contained newlines after the decorator or not. This can make generated code containing many decorators much more compact to read:</p> <pre lang="js"><code>// Original code class Foo { @A @b @c abc @x @y @z xyz } <p>// Old output class Foo { <a href="https://github.com/a"><code>@a</code></a> <a href="https://github.com/b"><code>@b</code></a> <a href="https://github.com/c"><code>@c</code></a> abc; <a href="https://github.com/x"><code>@x</code></a> <a href="https://github.com/y"><code>@y</code></a> <a href="https://github.com/z"><code>@z</code></a> xyz; }</p> <p>// New output class Foo { <a href="https://github.com/a"><code>@a</code></a> <a href="https://github.com/b"><code>@b</code></a> <a href="https://github.com/c"><code>@c</code></a> abc; <a href="https://github.com/x"><code>@x</code></a> <a href="https://github.com/y"><code>@y</code></a> <a href="https://github.com/z"><code>@z</code></a> xyz; } </code></pre></p> </li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/evanw/esbuild/blob/main/CHANGELOG.md">esbuild's changelog</a>.</em></p> <blockquote> <h2>0.19.8</h2> <ul> <li> <p>Add a treemap chart to esbuild's bundle analyzer (<a href="https://redirect.github.com/evanw/esbuild/issues/2848">#2848</a>)</p> <p>The bundler analyzer on esbuild's website (<a href="https://esbuild.github.io/analyze/">https://esbuild.github.io/analyze/</a>) now has a treemap chart type in addition to the two existing chart types (sunburst and flame). This should be more familiar for people coming from other similar tools, as well as make better use of large screens.</p> </li> <li> <p>Allow decorators after the <code>export</code> keyword (<a href="https://redirect.github.com/evanw/esbuild/issues/104">#104</a>)</p> <p>Previously esbuild's decorator parser followed the original behavior of TypeScript's experimental decorators feature, which only allowed decorators to come before the <code>export</code> keyword. However, the upcoming JavaScript decorators feature also allows decorators to come after the <code>export</code> keyword. And with TypeScript 5.0, TypeScript now also allows experimental decorators to come after the <code>export</code> keyword too. So esbuild now allows this as well:</p> <pre lang="js"><code>// This old syntax has always been permitted: @decorator export class Foo {} @decorator export default class Foo {} <p>// This new syntax is now permitted too: export <a href="https://github.com/decorator"><code>@decorator</code></a> class Foo {} export default <a href="https://github.com/decorator"><code>@decorator</code></a> class Foo {} </code></pre></p> <p>In addition, esbuild's decorator parser has been rewritten to fix several subtle and likely unimportant edge cases with esbuild's parsing of exports and decorators in TypeScript (e.g. TypeScript apparently does automatic semicolon insertion after <code>interface</code> and <code>export interface</code> but not after <code>export default interface</code>).</p> </li> <li> <p>Pretty-print decorators using the same whitespace as the original</p> <p>When printing code containing decorators, esbuild will now try to respect whether the original code contained newlines after the decorator or not. This can make generated code containing many decorators much more compact to read:</p> <pre lang="js"><code>// Original code class Foo { @A @b @c abc @x @y @z xyz } <p>// Old output class Foo { <a href="https://github.com/a"><code>@a</code></a> <a href="https://github.com/b"><code>@b</code></a> <a href="https://github.com/c"><code>@c</code></a> abc; <a href="https://github.com/x"><code>@x</code></a> <a href="https://github.com/y"><code>@y</code></a> <a href="https://github.com/z"><code>@z</code></a> xyz; }</p> <p>// New output class Foo { <a href="https://github.com/a"><code>@a</code></a> <a href="https://github.com/b"><code>@b</code></a> <a href="https://github.com/c"><code>@c</code></a> abc; <a href="https://github.com/x"><code>@x</code></a> <a href="https://github.com/y"><code>@y</code></a> <a href="https://github.com/z"><code>@z</code></a> xyz; } </code></pre></p> </li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/evanw/esbuild/commit/e97bd6706c7aaddb3770ae31b164d7ccaec8056c"><code>e97bd67</code></a> publish 0.19.8 to npm</li> <li><a href="https://github.com/evanw/esbuild/commit/65b305894dc8bb3bae8a2a2c88f2b461135ef13f"><code>65b3058</code></a> mention the treemap in the release notes (<a href="https://redirect.github.com/evanw/esbuild/issues/2848">#2848</a>)</li> <li><a href="https://github.com/evanw/esbuild/commit/16883d42eb631aac354104a80cc41446b983bdf9"><code>16883d4</code></a> add whitespace change to release notes</li> <li><a href="https://github.com/evanw/esbuild/commit/7383d0dbff033ae2f954a080a77b267eede303f9"><code>7383d0d</code></a> decorators: printing preserves newline-tail status</li> <li><a href="https://github.com/evanw/esbuild/commit/7edc83da67e9bf5bb217401debf0669a7011e8b8"><code>7edc83d</code></a> reword an experimental decorators error message</li> <li><a href="https://github.com/evanw/esbuild/commit/f3d535262e3998d845d0f102b944ecd5a9efda57"><code>f3d5352</code></a> remove a now-unused field</li> <li><a href="https://github.com/evanw/esbuild/commit/e7551893c099e101f9491e2b79851671db4cd441"><code>e755189</code></a> ts: forbid regular decorators on <code>declare</code> fields</li> <li><a href="https://github.com/evanw/esbuild/commit/69c9e7f9fa91db641ecbcfad40b9fd6977522f8a"><code>69c9e7f</code></a> allow decorators to come after <code>export</code> (<a href="https://redirect.github.com/evanw/esbuild/issues/104">#104</a>)</li> <li><a href="https://github.com/evanw/esbuild/commit/7baefdb4ea471d453a880a18fef5217347cf9973"><code>7baefdb</code></a> fix a panic with "export default interface\n"</li> <li><a href="https://github.com/evanw/esbuild/commit/a8313d2c5d1e7574de92b3aade60c5c84fd31c59"><code>a8313d2</code></a> use "check" for decorator validation, not "guess"</li> <li>Additional commits viewable in <a href="https://github.com/evanw/esbuild/compare/v0.19.5...v0.19.8">compare view</a></li> </ul> </details> <br /> Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore <dependency name> major version` will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself) - `@dependabot ignore <dependency name> minor version` will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself) - `@dependabot ignore <dependency name>` will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself) - `@dependabot unignore <dependency name>` will remove all of the ignore conditions of the specified dependency - `@dependabot unignore <dependency name> <ignore condition>` will remove the ignore condition of the specified dependency and ignore conditions </details> Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
- Loading branch information