ipfs-docs
ipfs-docs copied to clipboard
chore(deps-dev): bump prettier from 3.0.3 to 3.6.0
Bumps prettier from 3.0.3 to 3.6.0.
Release notes
Sourced from prettier's releases.
3.6.0
🔗 Release note
3.5.3
🔗 Changelog
3.5.2
🔗 Changelog
3.5.1
🔗 Changelog
3.5.0
🔗 Release note
3.4.2
🔗 Changelog
3.4.1
🔗 Changelog
3.4.0
🔗 Release note
3.3.3
🔗 Changelog
3.3.2
🔗 Changelog
3.3.1
🔗 Changelog
3.3.0
🔗 Release note
3.2.5
🔗 Changelog
3.2.4
- Fix
.eslintrc.jsonformat #15947
... (truncated)
Changelog
Sourced from prettier's changelog.
3.6.0
🔗 Release Notes
3.5.3
Flow: Fix missing parentheses in
ConditionalTypeAnnotation(#17196 by@​fisker)// Input type T<U> = 'a' | ('b' extends U ? 'c' : empty); type T<U> = 'a' & ('b' extends U ? 'c' : empty);// Prettier 3.5.2
type T<U> = "a" | "b" extends U ? "c" : empty;
type T<U> = "a" & "b" extends U ? "c" : empty;// Prettier 3.5.3
type T<U> = "a" | ("b" extends U ? "c" : empty);
type T<U> = "a" & ("b" extends U ? "c" : empty);
3.5.2
Remove
module-synccondition (#17156 by@​fisker)In Prettier 3.5.0, we added
module-synccondition topackage.json, so thatrequire("prettier")can use ESM version, but turns out it doesn't work if CommonJS and ESM plugins both imports builtin plugins. To solve this problem, we decide simply remove themodule-synccondition, sorequire("prettier")will still use the CommonJS version, we'll revisit untilrequire(ESM)feature is more stable.3.5.1
Fix CLI crash when cache for old version exists (#17100 by
@​sosukesuzuki)Prettier 3.5 uses a different cache format than previous versions, Prettier 3.5.0 crashes when reading existing cache file, Prettier 3.5.1 fixed the problem.
Support dockercompose and github-actions-workflow in VSCode (#17101 by
@​remcohaszing)Prettier now supports the
dockercomposeandgithub-actions-workflowlanguages in Visual Studio Code.3.5.0
... (truncated)
Commits
e1c8095Release 3.6.09dfcdcbDisable "Linting files" step64e0147get previous version from package.json1a32b27Release@​prettier/plugin-oxcand@​prettier/plugin-hermese0055d2Avoid breakTSImportTypewith long module name (#17637)c19a8a9chore(deps): update dependency@​stylistic/eslint-pluginto v5 (#17640)b4522b4Add badge to plugins (#17639)16c2d2echore(deps): update dependency concurrently to v9.2.0 (#17638)42d733bImprove .prettierignore file (#17632)25e2145Add test for #11526 (#17551)- Additional commits viewable in compare view
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 commands and options
You can trigger Dependabot actions by commenting on this PR:
@dependabot rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot mergewill merge this PR after your CI passes on it@dependabot squash and mergewill squash and merge this PR after your CI passes on it@dependabot cancel mergewill cancel a previously requested merge and block automerging@dependabot reopenwill reopen this PR if it is closed@dependabot closewill close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot show <dependency name> ignore conditionswill show all of the ignore conditions of the specified dependency@dependabot ignore this major versionwill 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 versionwill 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 dependencywill close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)