Files
bracket/docs
dependabot[bot] ebc0b002bc Bump @trivago/prettier-plugin-sort-imports from 5.2.2 to 6.0.0 in /docs (#1395)
Bumps
[@trivago/prettier-plugin-sort-imports](https://github.com/trivago/prettier-plugin-sort-imports)
from 5.2.2 to 6.0.0.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/trivago/prettier-plugin-sort-imports/releases"><code>@​trivago/prettier-plugin-sort-imports</code>'s
releases</a>.</em></p>
<blockquote>
<h2>v6.0.0</h2>
<h2>What's Changed</h2>
<ul>
<li>Update packages and pin babel/types by <a
href="https://github.com/byara"><code>@​byara</code></a> in <a
href="https://redirect.github.com/trivago/prettier-plugin-sort-imports/pull/343">trivago/prettier-plugin-sort-imports#343</a></li>
<li>V6 by <a href="https://github.com/byara"><code>@​byara</code></a>
and <a
href="https://github.com/vladislavarsenev"><code>@​vladislavarsenev</code></a>
in <a
href="https://redirect.github.com/trivago/prettier-plugin-sort-imports/pull/385">trivago/prettier-plugin-sort-imports#385</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/trivago/prettier-plugin-sort-imports/compare/v5.2.2...v6.0.0">https://github.com/trivago/prettier-plugin-sort-imports/compare/v5.2.2...v6.0.0</a></p>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/trivago/prettier-plugin-sort-imports/blob/main/CHANGELOG.md"><code>@​trivago/prettier-plugin-sort-imports</code>'s
changelog</a>.</em></p>
<blockquote>
<h3>6.0.0</h3>
<h4>Breaking Changes</h4>
<ul>
<li><strong>Switch to ESM</strong> <a
href="https://redirect.github.com/trivago/prettier-plugin-sort-imports/pull/366">#366</a>
by <a
href="https://github.com/RobbieTheWagner"><code>@​RobbieTheWagner</code></a>
- The plugin now uses ES modules instead of CommonJS</li>
<li><strong>Require Node &gt;= 20.x</strong> <a
href="https://redirect.github.com/trivago/prettier-plugin-sort-imports/pull/367">#367</a>
by <a
href="https://github.com/RobbieTheWagner"><code>@​RobbieTheWagner</code></a>
- Drop support for Node.js versions below 20</li>
<li><strong>Switch to vitest</strong> <a
href="https://redirect.github.com/trivago/prettier-plugin-sort-imports/pull/370">#370</a>
by <a
href="https://github.com/RobbieTheWagner"><code>@​RobbieTheWagner</code></a>
- Replaced Jest with Vitest for better ESM support</li>
</ul>
<h4>New features</h4>
<ul>
<li><strong>Ember.js gjs/gts support</strong> <a
href="https://redirect.github.com/trivago/prettier-plugin-sort-imports/pull/377">#377</a>
by <a
href="https://github.com/NullVoxPopuli"><code>@​NullVoxPopuli</code></a>
and <a
href="https://github.com/RobbieTheWagner"><code>@​RobbieTheWagner</code></a>
- Add support for Ember.js gjs/gts file formats with namespace and named
type imports</li>
<li><strong><code>&lt;BUILTIN_MODULES&gt;</code> placeholder</strong> <a
href="https://redirect.github.com/trivago/prettier-plugin-sort-imports/pull/381">#381</a>
by <a href="https://github.com/sdotson"><code>@​sdotson</code></a> - Add
support for sorting Node.js builtin modules to a specific position using
<code>&lt;BUILTIN_MODULES&gt;</code> placeholder in
<code>importOrder</code></li>
<li><strong><code>&lt;SEPARATOR&gt;</code> placeholder</strong> <a
href="https://redirect.github.com/trivago/prettier-plugin-sort-imports/pull/339">#339</a>
- Add <code>&lt;SEPARATOR&gt;</code> keyword for fine-grained control
over import group separation when <code>importOrderSeparation</code> is
enabled</li>
<li><strong>Sort by length option</strong> <a
href="https://redirect.github.com/trivago/prettier-plugin-sort-imports/pull/224">#224</a>
by <a href="https://github.com/KLewin23"><code>@​KLewin23</code></a> -
Add option to sort imports by import statement length</li>
<li><strong><code>importOrderExclude</code> option</strong> <a
href="https://redirect.github.com/trivago/prettier-plugin-sort-imports/pull/384">#384</a>
by <a
href="https://github.com/RyderKishan"><code>@​RyderKishan</code></a> -
Add support for excluding specific files from import sorting using glob
patterns</li>
<li><strong>Expand <code>sort-imports-ignore</code> detection</strong>
<a
href="https://redirect.github.com/trivago/prettier-plugin-sort-imports/pull/358">#358</a>
by <a href="https://github.com/ckwalsh"><code>@​ckwalsh</code></a> -
Improved detection of <code>sort-imports-ignore</code> comments
throughout the file, not just at line 1</li>
</ul>
<h4>Performance improvements</h4>
<ul>
<li><strong>Improve <code>removeNodesFromOriginalCode()</code>
performance</strong> <a
href="https://redirect.github.com/trivago/prettier-plugin-sort-imports/pull/356">#356</a>
by <a href="https://github.com/ckwalsh"><code>@​ckwalsh</code></a> -
Replace RegExp logic with string slices for better performance</li>
</ul>
<h4>Refactoring</h4>
<ul>
<li><strong>Stop rerendering directives</strong> <a
href="https://redirect.github.com/trivago/prettier-plugin-sort-imports/pull/357">#357</a>
by <a href="https://github.com/ckwalsh"><code>@​ckwalsh</code></a> -
Inject imports instead of re-rendering directives to better preserve
whitespace and reduce formatting conflicts</li>
<li><strong>Stop ignoring exceptions in snapshot tests</strong> <a
href="https://redirect.github.com/trivago/prettier-plugin-sort-imports/pull/355">#355</a>
by <a href="https://github.com/ckwalsh"><code>@​ckwalsh</code></a> -
Improve test reliability by properly handling exceptions</li>
</ul>
<h4>Chores</h4>
<ul>
<li>Add pnpm install command to README <a
href="https://redirect.github.com/trivago/prettier-plugin-sort-imports/pull/361">#361</a>
- Document pnpm installation option</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="48863194ec"><code>4886319</code></a>
6.0.0</li>
<li><a
href="d9b0a89de3"><code>d9b0a89</code></a>
Merge pull request <a
href="https://redirect.github.com/trivago/prettier-plugin-sort-imports/issues/386">#386</a>
from trivago/chores</li>
<li><a
href="e2d360fe13"><code>e2d360f</code></a>
update lockfile</li>
<li><a
href="c42a081c45"><code>c42a081</code></a>
V6 (<a
href="https://redirect.github.com/trivago/prettier-plugin-sort-imports/issues/385">#385</a>)</li>
<li><a
href="f7b685c768"><code>f7b685c</code></a>
Update README.md</li>
<li><a
href="12b22911e6"><code>12b2291</code></a>
Update README.md</li>
<li><a
href="875470a70a"><code>875470a</code></a>
Merge branch 'main' of
github.com:trivago/prettier-plugin-sort-imports</li>
<li><a
href="509c5a7209"><code>509c5a7</code></a>
Update packages and pin babel/types (<a
href="https://redirect.github.com/trivago/prettier-plugin-sort-imports/issues/343">#343</a>)</li>
<li>See full diff in <a
href="https://github.com/trivago/prettier-plugin-sort-imports/compare/v5.2.2...v6.0.0">compare
view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=@trivago/prettier-plugin-sort-imports&package-manager=npm_and_yarn&previous-version=5.2.2&new-version=6.0.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

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 this major version` will close this PR and stop
Dependabot creating any more for this major version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop
Dependabot creating any more for this minor version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop
Dependabot creating any more for this dependency (unless you reopen the
PR or upgrade to it yourself)


</details>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-11-11 13:58:42 +00:00
..
2025-05-28 10:03:15 +00:00
2025-11-11 13:41:24 +00:00
2025-03-01 20:41:32 +01:00
2025-05-28 10:03:15 +00:00
2025-03-01 20:41:32 +01:00
2025-03-01 20:01:38 +00:00
2025-03-01 20:41:32 +01:00
2025-03-01 20:41:32 +01:00
2025-05-28 09:38:28 +00:00
2025-03-01 20:41:32 +01:00
2025-03-01 20:41:32 +01:00
2025-03-01 20:41:32 +01:00

docs_2

This is a Next.js application generated with Nextra and shadcn-landing-page.

Run development server:

yarn dev

Open http://localhost:3000 with your browser to see the result.