-
Notifications
You must be signed in to change notification settings - Fork 25
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Remove importOrderMergeDuplicateImports option (always on) #66
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
fbartho
approved these changes
Apr 24, 2023
kodiakhq bot
referenced
this pull request
in timelessco/browser-js-library-template
May 26, 2023
…#156) [![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [@ianvs/prettier-plugin-sort-imports](https://togithub.com/ianvs/prettier-plugin-sort-imports) | [`^3.7.2` -> `^4.0.0`](https://renovatebot.com/diffs/npm/@ianvs%2fprettier-plugin-sort-imports/3.7.2/4.0.0) | [![age](https://badges.renovateapi.com/packages/npm/@ianvs%2fprettier-plugin-sort-imports/4.0.0/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@ianvs%2fprettier-plugin-sort-imports/4.0.0/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@ianvs%2fprettier-plugin-sort-imports/4.0.0/compatibility-slim/3.7.2)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@ianvs%2fprettier-plugin-sort-imports/4.0.0/confidence-slim/3.7.2)](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes <details> <summary>ianvs/prettier-plugin-sort-imports</summary> ### [`v4.0.0`](https://togithub.com/IanVS/prettier-plugin-sort-imports/releases/tag/v4.0.0) [Compare Source](https://togithub.com/ianvs/prettier-plugin-sort-imports/compare/v3.7.2...v4.0.0) #### What's Changed This new release focuses on simplifying the plugin options, shipping more useful defaults, handling comments around import statements more reliably, and improving Vue and TypeScript compatibility. We also are targeting Node 16 syntax with our build, though older versions may continue to work (untested). See the full [migration guide](https://togithub.com/IanVS/prettier-plugin-sort-imports/blob/next/docs/MIGRATION.md#migrating-from-v3xx-to-v4xx) for details of the breaking changes. ##### ⬆️ Breaking Changes - Build for Node 16+ ([https://github.com/IanVS/prettier-plugin-sort-imports/pull/59](https://togithub.com/IanVS/prettier-plugin-sort-imports/pull/59)) - Remove `importOrderBuiltinModulesToTop` (always true) ([https://github.com/IanVS/prettier-plugin-sort-imports/pull/60](https://togithub.com/IanVS/prettier-plugin-sort-imports/pull/60)) - Remove `importOrderSeparation` option ([https://github.com/IanVS/prettier-plugin-sort-imports/pull/62](https://togithub.com/IanVS/prettier-plugin-sort-imports/pull/62)) - Remove `importOrderCaseInsensitive` option ([https://github.com/IanVS/prettier-plugin-sort-imports/pull/63](https://togithub.com/IanVS/prettier-plugin-sort-imports/pull/63)) - Remove `importOrderGroupNamespaceSpecifiers` option ([https://github.com/IanVS/prettier-plugin-sort-imports/pull/64](https://togithub.com/IanVS/prettier-plugin-sort-imports/pull/64)) - Remove `importOrderSortSpecifiers` option ([https://github.com/IanVS/prettier-plugin-sort-imports/pull/65](https://togithub.com/IanVS/prettier-plugin-sort-imports/pull/65)) - Remove `importOrderMergeDuplicateImports` option (always on) ([https://github.com/IanVS/prettier-plugin-sort-imports/pull/66](https://togithub.com/IanVS/prettier-plugin-sort-imports/pull/66)) - Replace `importOrderCombineTypeAndValueImports` with `importOrderTypeScriptVersion` ([https://github.com/IanVS/prettier-plugin-sort-imports/pull/67](https://togithub.com/IanVS/prettier-plugin-sort-imports/pull/67)) - Improve default sort order ([https://github.com/IanVS/prettier-plugin-sort-imports/pull/83](https://togithub.com/IanVS/prettier-plugin-sort-imports/pull/83)) ##### 🐛 Bug Fixes - Fix behavior around comments embedded in imports ([https://github.com/IanVS/prettier-plugin-sort-imports/pull/71](https://togithub.com/IanVS/prettier-plugin-sort-imports/pull/71)) - Preserve trailing comments on specifiers ([https://github.com/IanVS/prettier-plugin-sort-imports/pull/80](https://togithub.com/IanVS/prettier-plugin-sort-imports/pull/80)) - Preserve comments and blank lines at top-of-file (in [https://github.com/IanVS/prettier-plugin-sort-imports/pull/82](https://togithub.com/IanVS/prettier-plugin-sort-imports/pull/82)) - Prevent comment gap when re-arranging first import ([https://github.com/IanVS/prettier-plugin-sort-imports/pull/85](https://togithub.com/IanVS/prettier-plugin-sort-imports/pull/85)) - Fix: Top-of-file Comments get duplicated when moving runtime code ([https://github.com/IanVS/prettier-plugin-sort-imports/pull/88](https://togithub.com/IanVS/prettier-plugin-sort-imports/pull/88)) - Vue: Sort both script and setup script ([https://github.com/IanVS/prettier-plugin-sort-imports/pull/90](https://togithub.com/IanVS/prettier-plugin-sort-imports/pull/90)) - Vue and TypeScript: Use correct parser plugins ([https://github.com/IanVS/prettier-plugin-sort-imports/pull/91](https://togithub.com/IanVS/prettier-plugin-sort-imports/pull/91)) ##### ⚡️ Features - Add `<BUILTIN_MODULES>` Special Word ([https://github.com/IanVS/prettier-plugin-sort-imports/pull/86](https://togithub.com/IanVS/prettier-plugin-sort-imports/pull/86)) - Allow Explicit Separator after Top-of-file-comments ([https://github.com/IanVS/prettier-plugin-sort-imports/pull/92](https://togithub.com/IanVS/prettier-plugin-sort-imports/pull/92)) - Support babel-ts parser ([https://github.com/IanVS/prettier-plugin-sort-imports/pull/97](https://togithub.com/IanVS/prettier-plugin-sort-imports/pull/97)) ##### 🛠️ Repo Maintenance - Update dependencies, jest -> vitest ([https://github.com/IanVS/prettier-plugin-sort-imports/pull/59](https://togithub.com/IanVS/prettier-plugin-sort-imports/pull/59)) - Check formatting in CI ([https://github.com/IanVS/prettier-plugin-sort-imports/pull/61](https://togithub.com/IanVS/prettier-plugin-sort-imports/pull/61)) - Update to latest versions of Github Actions ([https://github.com/IanVS/prettier-plugin-sort-imports/pull/73](https://togithub.com/IanVS/prettier-plugin-sort-imports/pull/73)) - Add some more tests for comments ([https://github.com/IanVS/prettier-plugin-sort-imports/pull/77](https://togithub.com/IanVS/prettier-plugin-sort-imports/pull/77)) ##### 🧳 Dependencies - Drop javascript-natural-sort dependency ([https://github.com/IanVS/prettier-plugin-sort-imports/pull/28](https://togithub.com/IanVS/prettier-plugin-sort-imports/pull/28)) - Drop lodash.clone dependency ([https://github.com/IanVS/prettier-plugin-sort-imports/pull/74](https://togithub.com/IanVS/prettier-plugin-sort-imports/pull/74)) - Upgrade Babel to 7.21 ([https://github.com/IanVS/prettier-plugin-sort-imports/pull/72](https://togithub.com/IanVS/prettier-plugin-sort-imports/pull/72)) **Full Changelog**: IanVS/prettier-plugin-sort-imports@v3.7.2...v4.0.0 </details> --- ### Configuration 📅 **Schedule**: Branch creation - "after 12am and before 5am every weekday,every weekend" in timezone Asia/Kolkata, Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR is behind base branch, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] If you want to rebase/retry this PR, check this box --- This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://app.renovatebot.com/dashboard#github/timelessco/browser-js-library-template).
kodiakhq bot
referenced
this pull request
in timelessco/browser-js-website-template
May 26, 2023
…#109) [![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [@ianvs/prettier-plugin-sort-imports](https://togithub.com/ianvs/prettier-plugin-sort-imports) | [`^3.7.2` -> `^4.0.0`](https://renovatebot.com/diffs/npm/@ianvs%2fprettier-plugin-sort-imports/3.7.2/4.0.0) | [![age](https://badges.renovateapi.com/packages/npm/@ianvs%2fprettier-plugin-sort-imports/4.0.0/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@ianvs%2fprettier-plugin-sort-imports/4.0.0/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@ianvs%2fprettier-plugin-sort-imports/4.0.0/compatibility-slim/3.7.2)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@ianvs%2fprettier-plugin-sort-imports/4.0.0/confidence-slim/3.7.2)](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes <details> <summary>ianvs/prettier-plugin-sort-imports</summary> ### [`v4.0.0`](https://togithub.com/IanVS/prettier-plugin-sort-imports/releases/tag/v4.0.0) [Compare Source](https://togithub.com/ianvs/prettier-plugin-sort-imports/compare/v3.7.2...v4.0.0) #### What's Changed This new release focuses on simplifying the plugin options, shipping more useful defaults, handling comments around import statements more reliably, and improving Vue and TypeScript compatibility. We also are targeting Node 16 syntax with our build, though older versions may continue to work (untested). See the full [migration guide](https://togithub.com/IanVS/prettier-plugin-sort-imports/blob/next/docs/MIGRATION.md#migrating-from-v3xx-to-v4xx) for details of the breaking changes. ##### ⬆️ Breaking Changes - Build for Node 16+ ([https://github.com/IanVS/prettier-plugin-sort-imports/pull/59](https://togithub.com/IanVS/prettier-plugin-sort-imports/pull/59)) - Remove `importOrderBuiltinModulesToTop` (always true) ([https://github.com/IanVS/prettier-plugin-sort-imports/pull/60](https://togithub.com/IanVS/prettier-plugin-sort-imports/pull/60)) - Remove `importOrderSeparation` option ([https://github.com/IanVS/prettier-plugin-sort-imports/pull/62](https://togithub.com/IanVS/prettier-plugin-sort-imports/pull/62)) - Remove `importOrderCaseInsensitive` option ([https://github.com/IanVS/prettier-plugin-sort-imports/pull/63](https://togithub.com/IanVS/prettier-plugin-sort-imports/pull/63)) - Remove `importOrderGroupNamespaceSpecifiers` option ([https://github.com/IanVS/prettier-plugin-sort-imports/pull/64](https://togithub.com/IanVS/prettier-plugin-sort-imports/pull/64)) - Remove `importOrderSortSpecifiers` option ([https://github.com/IanVS/prettier-plugin-sort-imports/pull/65](https://togithub.com/IanVS/prettier-plugin-sort-imports/pull/65)) - Remove `importOrderMergeDuplicateImports` option (always on) ([https://github.com/IanVS/prettier-plugin-sort-imports/pull/66](https://togithub.com/IanVS/prettier-plugin-sort-imports/pull/66)) - Replace `importOrderCombineTypeAndValueImports` with `importOrderTypeScriptVersion` ([https://github.com/IanVS/prettier-plugin-sort-imports/pull/67](https://togithub.com/IanVS/prettier-plugin-sort-imports/pull/67)) - Improve default sort order ([https://github.com/IanVS/prettier-plugin-sort-imports/pull/83](https://togithub.com/IanVS/prettier-plugin-sort-imports/pull/83)) ##### 🐛 Bug Fixes - Fix behavior around comments embedded in imports ([https://github.com/IanVS/prettier-plugin-sort-imports/pull/71](https://togithub.com/IanVS/prettier-plugin-sort-imports/pull/71)) - Preserve trailing comments on specifiers ([https://github.com/IanVS/prettier-plugin-sort-imports/pull/80](https://togithub.com/IanVS/prettier-plugin-sort-imports/pull/80)) - Preserve comments and blank lines at top-of-file (in [https://github.com/IanVS/prettier-plugin-sort-imports/pull/82](https://togithub.com/IanVS/prettier-plugin-sort-imports/pull/82)) - Prevent comment gap when re-arranging first import ([https://github.com/IanVS/prettier-plugin-sort-imports/pull/85](https://togithub.com/IanVS/prettier-plugin-sort-imports/pull/85)) - Fix: Top-of-file Comments get duplicated when moving runtime code ([https://github.com/IanVS/prettier-plugin-sort-imports/pull/88](https://togithub.com/IanVS/prettier-plugin-sort-imports/pull/88)) - Vue: Sort both script and setup script ([https://github.com/IanVS/prettier-plugin-sort-imports/pull/90](https://togithub.com/IanVS/prettier-plugin-sort-imports/pull/90)) - Vue and TypeScript: Use correct parser plugins ([https://github.com/IanVS/prettier-plugin-sort-imports/pull/91](https://togithub.com/IanVS/prettier-plugin-sort-imports/pull/91)) ##### ⚡️ Features - Add `<BUILTIN_MODULES>` Special Word ([https://github.com/IanVS/prettier-plugin-sort-imports/pull/86](https://togithub.com/IanVS/prettier-plugin-sort-imports/pull/86)) - Allow Explicit Separator after Top-of-file-comments ([https://github.com/IanVS/prettier-plugin-sort-imports/pull/92](https://togithub.com/IanVS/prettier-plugin-sort-imports/pull/92)) - Support babel-ts parser ([https://github.com/IanVS/prettier-plugin-sort-imports/pull/97](https://togithub.com/IanVS/prettier-plugin-sort-imports/pull/97)) ##### 🛠️ Repo Maintenance - Update dependencies, jest -> vitest ([https://github.com/IanVS/prettier-plugin-sort-imports/pull/59](https://togithub.com/IanVS/prettier-plugin-sort-imports/pull/59)) - Check formatting in CI ([https://github.com/IanVS/prettier-plugin-sort-imports/pull/61](https://togithub.com/IanVS/prettier-plugin-sort-imports/pull/61)) - Update to latest versions of Github Actions ([https://github.com/IanVS/prettier-plugin-sort-imports/pull/73](https://togithub.com/IanVS/prettier-plugin-sort-imports/pull/73)) - Add some more tests for comments ([https://github.com/IanVS/prettier-plugin-sort-imports/pull/77](https://togithub.com/IanVS/prettier-plugin-sort-imports/pull/77)) ##### 🧳 Dependencies - Drop javascript-natural-sort dependency ([https://github.com/IanVS/prettier-plugin-sort-imports/pull/28](https://togithub.com/IanVS/prettier-plugin-sort-imports/pull/28)) - Drop lodash.clone dependency ([https://github.com/IanVS/prettier-plugin-sort-imports/pull/74](https://togithub.com/IanVS/prettier-plugin-sort-imports/pull/74)) - Upgrade Babel to 7.21 ([https://github.com/IanVS/prettier-plugin-sort-imports/pull/72](https://togithub.com/IanVS/prettier-plugin-sort-imports/pull/72)) **Full Changelog**: IanVS/prettier-plugin-sort-imports@v3.7.2...v4.0.0 </details> --- ### Configuration 📅 **Schedule**: Branch creation - "after 12am and before 5am every weekday,every weekend" in timezone Asia/Kolkata, Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR is behind base branch, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] If you want to rebase/retry this PR, check this box --- This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://app.renovatebot.com/dashboard#github/timelessco/browser-js-website-template).
kodiakhq bot
referenced
this pull request
in timelessco/js-bottomsheet
May 26, 2023
…#122) [![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [@ianvs/prettier-plugin-sort-imports](https://togithub.com/ianvs/prettier-plugin-sort-imports) | [`^3.7.2` -> `^4.0.0`](https://renovatebot.com/diffs/npm/@ianvs%2fprettier-plugin-sort-imports/3.7.2/4.0.0) | [![age](https://badges.renovateapi.com/packages/npm/@ianvs%2fprettier-plugin-sort-imports/4.0.0/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@ianvs%2fprettier-plugin-sort-imports/4.0.0/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@ianvs%2fprettier-plugin-sort-imports/4.0.0/compatibility-slim/3.7.2)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@ianvs%2fprettier-plugin-sort-imports/4.0.0/confidence-slim/3.7.2)](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes <details> <summary>ianvs/prettier-plugin-sort-imports</summary> ### [`v4.0.0`](https://togithub.com/IanVS/prettier-plugin-sort-imports/releases/tag/v4.0.0) [Compare Source](https://togithub.com/ianvs/prettier-plugin-sort-imports/compare/v3.7.2...v4.0.0) #### What's Changed This new release focuses on simplifying the plugin options, shipping more useful defaults, handling comments around import statements more reliably, and improving Vue and TypeScript compatibility. We also are targeting Node 16 syntax with our build, though older versions may continue to work (untested). See the full [migration guide](https://togithub.com/IanVS/prettier-plugin-sort-imports/blob/next/docs/MIGRATION.md#migrating-from-v3xx-to-v4xx) for details of the breaking changes. ##### ⬆️ Breaking Changes - Build for Node 16+ ([https://github.com/IanVS/prettier-plugin-sort-imports/pull/59](https://togithub.com/IanVS/prettier-plugin-sort-imports/pull/59)) - Remove `importOrderBuiltinModulesToTop` (always true) ([https://github.com/IanVS/prettier-plugin-sort-imports/pull/60](https://togithub.com/IanVS/prettier-plugin-sort-imports/pull/60)) - Remove `importOrderSeparation` option ([https://github.com/IanVS/prettier-plugin-sort-imports/pull/62](https://togithub.com/IanVS/prettier-plugin-sort-imports/pull/62)) - Remove `importOrderCaseInsensitive` option ([https://github.com/IanVS/prettier-plugin-sort-imports/pull/63](https://togithub.com/IanVS/prettier-plugin-sort-imports/pull/63)) - Remove `importOrderGroupNamespaceSpecifiers` option ([https://github.com/IanVS/prettier-plugin-sort-imports/pull/64](https://togithub.com/IanVS/prettier-plugin-sort-imports/pull/64)) - Remove `importOrderSortSpecifiers` option ([https://github.com/IanVS/prettier-plugin-sort-imports/pull/65](https://togithub.com/IanVS/prettier-plugin-sort-imports/pull/65)) - Remove `importOrderMergeDuplicateImports` option (always on) ([https://github.com/IanVS/prettier-plugin-sort-imports/pull/66](https://togithub.com/IanVS/prettier-plugin-sort-imports/pull/66)) - Replace `importOrderCombineTypeAndValueImports` with `importOrderTypeScriptVersion` ([https://github.com/IanVS/prettier-plugin-sort-imports/pull/67](https://togithub.com/IanVS/prettier-plugin-sort-imports/pull/67)) - Improve default sort order ([https://github.com/IanVS/prettier-plugin-sort-imports/pull/83](https://togithub.com/IanVS/prettier-plugin-sort-imports/pull/83)) ##### 🐛 Bug Fixes - Fix behavior around comments embedded in imports ([https://github.com/IanVS/prettier-plugin-sort-imports/pull/71](https://togithub.com/IanVS/prettier-plugin-sort-imports/pull/71)) - Preserve trailing comments on specifiers ([https://github.com/IanVS/prettier-plugin-sort-imports/pull/80](https://togithub.com/IanVS/prettier-plugin-sort-imports/pull/80)) - Preserve comments and blank lines at top-of-file (in [https://github.com/IanVS/prettier-plugin-sort-imports/pull/82](https://togithub.com/IanVS/prettier-plugin-sort-imports/pull/82)) - Prevent comment gap when re-arranging first import ([https://github.com/IanVS/prettier-plugin-sort-imports/pull/85](https://togithub.com/IanVS/prettier-plugin-sort-imports/pull/85)) - Fix: Top-of-file Comments get duplicated when moving runtime code ([https://github.com/IanVS/prettier-plugin-sort-imports/pull/88](https://togithub.com/IanVS/prettier-plugin-sort-imports/pull/88)) - Vue: Sort both script and setup script ([https://github.com/IanVS/prettier-plugin-sort-imports/pull/90](https://togithub.com/IanVS/prettier-plugin-sort-imports/pull/90)) - Vue and TypeScript: Use correct parser plugins ([https://github.com/IanVS/prettier-plugin-sort-imports/pull/91](https://togithub.com/IanVS/prettier-plugin-sort-imports/pull/91)) ##### ⚡️ Features - Add `<BUILTIN_MODULES>` Special Word ([https://github.com/IanVS/prettier-plugin-sort-imports/pull/86](https://togithub.com/IanVS/prettier-plugin-sort-imports/pull/86)) - Allow Explicit Separator after Top-of-file-comments ([https://github.com/IanVS/prettier-plugin-sort-imports/pull/92](https://togithub.com/IanVS/prettier-plugin-sort-imports/pull/92)) - Support babel-ts parser ([https://github.com/IanVS/prettier-plugin-sort-imports/pull/97](https://togithub.com/IanVS/prettier-plugin-sort-imports/pull/97)) ##### 🛠️ Repo Maintenance - Update dependencies, jest -> vitest ([https://github.com/IanVS/prettier-plugin-sort-imports/pull/59](https://togithub.com/IanVS/prettier-plugin-sort-imports/pull/59)) - Check formatting in CI ([https://github.com/IanVS/prettier-plugin-sort-imports/pull/61](https://togithub.com/IanVS/prettier-plugin-sort-imports/pull/61)) - Update to latest versions of Github Actions ([https://github.com/IanVS/prettier-plugin-sort-imports/pull/73](https://togithub.com/IanVS/prettier-plugin-sort-imports/pull/73)) - Add some more tests for comments ([https://github.com/IanVS/prettier-plugin-sort-imports/pull/77](https://togithub.com/IanVS/prettier-plugin-sort-imports/pull/77)) ##### 🧳 Dependencies - Drop javascript-natural-sort dependency ([https://github.com/IanVS/prettier-plugin-sort-imports/pull/28](https://togithub.com/IanVS/prettier-plugin-sort-imports/pull/28)) - Drop lodash.clone dependency ([https://github.com/IanVS/prettier-plugin-sort-imports/pull/74](https://togithub.com/IanVS/prettier-plugin-sort-imports/pull/74)) - Upgrade Babel to 7.21 ([https://github.com/IanVS/prettier-plugin-sort-imports/pull/72](https://togithub.com/IanVS/prettier-plugin-sort-imports/pull/72)) **Full Changelog**: IanVS/prettier-plugin-sort-imports@v3.7.2...v4.0.0 </details> --- ### Configuration 📅 **Schedule**: Branch creation - "after 12am and before 5am every weekday,every weekend" in timezone Asia/Kolkata, Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR is behind base branch, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] If you want to rebase/retry this PR, check this box --- This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://app.renovatebot.com/dashboard#github/timelessco/js-bottomsheet).
kodiakhq bot
referenced
this pull request
in timelessco/node-ts-library-template
May 26, 2023
…#79) [![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [@ianvs/prettier-plugin-sort-imports](https://togithub.com/ianvs/prettier-plugin-sort-imports) | [`3.7.2` -> `4.0.0`](https://renovatebot.com/diffs/npm/@ianvs%2fprettier-plugin-sort-imports/3.7.2/4.0.0) | [![age](https://badges.renovateapi.com/packages/npm/@ianvs%2fprettier-plugin-sort-imports/4.0.0/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@ianvs%2fprettier-plugin-sort-imports/4.0.0/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@ianvs%2fprettier-plugin-sort-imports/4.0.0/compatibility-slim/3.7.2)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@ianvs%2fprettier-plugin-sort-imports/4.0.0/confidence-slim/3.7.2)](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes <details> <summary>ianvs/prettier-plugin-sort-imports</summary> ### [`v4.0.0`](https://togithub.com/IanVS/prettier-plugin-sort-imports/releases/tag/v4.0.0) [Compare Source](https://togithub.com/ianvs/prettier-plugin-sort-imports/compare/v3.7.2...v4.0.0) #### What's Changed This new release focuses on simplifying the plugin options, shipping more useful defaults, handling comments around import statements more reliably, and improving Vue and TypeScript compatibility. We also are targeting Node 16 syntax with our build, though older versions may continue to work (untested). See the full [migration guide](https://togithub.com/IanVS/prettier-plugin-sort-imports/blob/next/docs/MIGRATION.md#migrating-from-v3xx-to-v4xx) for details of the breaking changes. ##### ⬆️ Breaking Changes - Build for Node 16+ ([https://github.com/IanVS/prettier-plugin-sort-imports/pull/59](https://togithub.com/IanVS/prettier-plugin-sort-imports/pull/59)) - Remove `importOrderBuiltinModulesToTop` (always true) ([https://github.com/IanVS/prettier-plugin-sort-imports/pull/60](https://togithub.com/IanVS/prettier-plugin-sort-imports/pull/60)) - Remove `importOrderSeparation` option ([https://github.com/IanVS/prettier-plugin-sort-imports/pull/62](https://togithub.com/IanVS/prettier-plugin-sort-imports/pull/62)) - Remove `importOrderCaseInsensitive` option ([https://github.com/IanVS/prettier-plugin-sort-imports/pull/63](https://togithub.com/IanVS/prettier-plugin-sort-imports/pull/63)) - Remove `importOrderGroupNamespaceSpecifiers` option ([https://github.com/IanVS/prettier-plugin-sort-imports/pull/64](https://togithub.com/IanVS/prettier-plugin-sort-imports/pull/64)) - Remove `importOrderSortSpecifiers` option ([https://github.com/IanVS/prettier-plugin-sort-imports/pull/65](https://togithub.com/IanVS/prettier-plugin-sort-imports/pull/65)) - Remove `importOrderMergeDuplicateImports` option (always on) ([https://github.com/IanVS/prettier-plugin-sort-imports/pull/66](https://togithub.com/IanVS/prettier-plugin-sort-imports/pull/66)) - Replace `importOrderCombineTypeAndValueImports` with `importOrderTypeScriptVersion` ([https://github.com/IanVS/prettier-plugin-sort-imports/pull/67](https://togithub.com/IanVS/prettier-plugin-sort-imports/pull/67)) - Improve default sort order ([https://github.com/IanVS/prettier-plugin-sort-imports/pull/83](https://togithub.com/IanVS/prettier-plugin-sort-imports/pull/83)) ##### 🐛 Bug Fixes - Fix behavior around comments embedded in imports ([https://github.com/IanVS/prettier-plugin-sort-imports/pull/71](https://togithub.com/IanVS/prettier-plugin-sort-imports/pull/71)) - Preserve trailing comments on specifiers ([https://github.com/IanVS/prettier-plugin-sort-imports/pull/80](https://togithub.com/IanVS/prettier-plugin-sort-imports/pull/80)) - Preserve comments and blank lines at top-of-file (in [https://github.com/IanVS/prettier-plugin-sort-imports/pull/82](https://togithub.com/IanVS/prettier-plugin-sort-imports/pull/82)) - Prevent comment gap when re-arranging first import ([https://github.com/IanVS/prettier-plugin-sort-imports/pull/85](https://togithub.com/IanVS/prettier-plugin-sort-imports/pull/85)) - Fix: Top-of-file Comments get duplicated when moving runtime code ([https://github.com/IanVS/prettier-plugin-sort-imports/pull/88](https://togithub.com/IanVS/prettier-plugin-sort-imports/pull/88)) - Vue: Sort both script and setup script ([https://github.com/IanVS/prettier-plugin-sort-imports/pull/90](https://togithub.com/IanVS/prettier-plugin-sort-imports/pull/90)) - Vue and TypeScript: Use correct parser plugins ([https://github.com/IanVS/prettier-plugin-sort-imports/pull/91](https://togithub.com/IanVS/prettier-plugin-sort-imports/pull/91)) ##### ⚡️ Features - Add `<BUILTIN_MODULES>` Special Word ([https://github.com/IanVS/prettier-plugin-sort-imports/pull/86](https://togithub.com/IanVS/prettier-plugin-sort-imports/pull/86)) - Allow Explicit Separator after Top-of-file-comments ([https://github.com/IanVS/prettier-plugin-sort-imports/pull/92](https://togithub.com/IanVS/prettier-plugin-sort-imports/pull/92)) - Support babel-ts parser ([https://github.com/IanVS/prettier-plugin-sort-imports/pull/97](https://togithub.com/IanVS/prettier-plugin-sort-imports/pull/97)) ##### 🛠️ Repo Maintenance - Update dependencies, jest -> vitest ([https://github.com/IanVS/prettier-plugin-sort-imports/pull/59](https://togithub.com/IanVS/prettier-plugin-sort-imports/pull/59)) - Check formatting in CI ([https://github.com/IanVS/prettier-plugin-sort-imports/pull/61](https://togithub.com/IanVS/prettier-plugin-sort-imports/pull/61)) - Update to latest versions of Github Actions ([https://github.com/IanVS/prettier-plugin-sort-imports/pull/73](https://togithub.com/IanVS/prettier-plugin-sort-imports/pull/73)) - Add some more tests for comments ([https://github.com/IanVS/prettier-plugin-sort-imports/pull/77](https://togithub.com/IanVS/prettier-plugin-sort-imports/pull/77)) ##### 🧳 Dependencies - Drop javascript-natural-sort dependency ([https://github.com/IanVS/prettier-plugin-sort-imports/pull/28](https://togithub.com/IanVS/prettier-plugin-sort-imports/pull/28)) - Drop lodash.clone dependency ([https://github.com/IanVS/prettier-plugin-sort-imports/pull/74](https://togithub.com/IanVS/prettier-plugin-sort-imports/pull/74)) - Upgrade Babel to 7.21 ([https://github.com/IanVS/prettier-plugin-sort-imports/pull/72](https://togithub.com/IanVS/prettier-plugin-sort-imports/pull/72)) **Full Changelog**: IanVS/prettier-plugin-sort-imports@v3.7.2...v4.0.0 </details> --- ### Configuration 📅 **Schedule**: Branch creation - "after 12am and before 5am on saturday" in timezone Asia/Kolkata, Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR is behind base branch, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] If you want to rebase/retry this PR, check this box --- This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://app.renovatebot.com/dashboard#github/timelessco/node-ts-library-template).
kodiakhq bot
referenced
this pull request
in timelessco/node-js-library-template
Jun 2, 2023
…#71) [![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [@ianvs/prettier-plugin-sort-imports](https://togithub.com/ianvs/prettier-plugin-sort-imports) | [`3.7.2` -> `4.0.2`](https://renovatebot.com/diffs/npm/@ianvs%2fprettier-plugin-sort-imports/3.7.2/4.0.2) | [![age](https://badges.renovateapi.com/packages/npm/@ianvs%2fprettier-plugin-sort-imports/4.0.2/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@ianvs%2fprettier-plugin-sort-imports/4.0.2/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@ianvs%2fprettier-plugin-sort-imports/4.0.2/compatibility-slim/3.7.2)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@ianvs%2fprettier-plugin-sort-imports/4.0.2/confidence-slim/3.7.2)](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes <details> <summary>ianvs/prettier-plugin-sort-imports</summary> ### [`v4.0.2`](https://togithub.com/IanVS/prettier-plugin-sort-imports/releases/tag/v4.0.2) [Compare Source](https://togithub.com/ianvs/prettier-plugin-sort-imports/compare/v4.0.1...v4.0.2) #### What's Changed - Account for missing filepath by [@​IanVS](https://togithub.com/IanVS) in [https://github.com/IanVS/prettier-plugin-sort-imports/pull/104](https://togithub.com/IanVS/prettier-plugin-sort-imports/pull/104) **Full Changelog**: IanVS/prettier-plugin-sort-imports@v4.0.1...v4.0.2 ### [`v4.0.1`](https://togithub.com/IanVS/prettier-plugin-sort-imports/releases/tag/v4.0.1) [Compare Source](https://togithub.com/ianvs/prettier-plugin-sort-imports/compare/v4.0.0...v4.0.1) #### What's Changed - Fix cli in Install section by [@​torn4dom4n](https://togithub.com/torn4dom4n) in [https://github.com/IanVS/prettier-plugin-sort-imports/pull/99](https://togithub.com/IanVS/prettier-plugin-sort-imports/pull/99) - Fix dollar sign ($) issue in Vue SFC by [@​istiak-tridip](https://togithub.com/istiak-tridip) in [https://github.com/IanVS/prettier-plugin-sort-imports/pull/101](https://togithub.com/IanVS/prettier-plugin-sort-imports/pull/101) #### New Contributors - [@​torn4dom4n](https://togithub.com/torn4dom4n) made their first contribution in [https://github.com/IanVS/prettier-plugin-sort-imports/pull/99](https://togithub.com/IanVS/prettier-plugin-sort-imports/pull/99) - [@​istiak-tridip](https://togithub.com/istiak-tridip) made their first contribution in [https://github.com/IanVS/prettier-plugin-sort-imports/pull/101](https://togithub.com/IanVS/prettier-plugin-sort-imports/pull/101) **Full Changelog**: IanVS/prettier-plugin-sort-imports@v4.0.0...v4.0.1 ### [`v4.0.0`](https://togithub.com/IanVS/prettier-plugin-sort-imports/releases/tag/v4.0.0) [Compare Source](https://togithub.com/ianvs/prettier-plugin-sort-imports/compare/v3.7.2...v4.0.0) #### What's Changed This new release focuses on simplifying the plugin options, shipping more useful defaults, handling comments around import statements more reliably, and improving Vue and TypeScript compatibility. We also are targeting Node 16 syntax with our build, though older versions may continue to work (untested). See the full [migration guide](https://togithub.com/IanVS/prettier-plugin-sort-imports/blob/next/docs/MIGRATION.md#migrating-from-v3xx-to-v4xx) for details of the breaking changes. ##### ⬆️ Breaking Changes - Build for Node 16+ ([https://github.com/IanVS/prettier-plugin-sort-imports/pull/59](https://togithub.com/IanVS/prettier-plugin-sort-imports/pull/59)) - Remove `importOrderBuiltinModulesToTop` (always true) ([https://github.com/IanVS/prettier-plugin-sort-imports/pull/60](https://togithub.com/IanVS/prettier-plugin-sort-imports/pull/60)) - Remove `importOrderSeparation` option ([https://github.com/IanVS/prettier-plugin-sort-imports/pull/62](https://togithub.com/IanVS/prettier-plugin-sort-imports/pull/62)) - Remove `importOrderCaseInsensitive` option ([https://github.com/IanVS/prettier-plugin-sort-imports/pull/63](https://togithub.com/IanVS/prettier-plugin-sort-imports/pull/63)) - Remove `importOrderGroupNamespaceSpecifiers` option ([https://github.com/IanVS/prettier-plugin-sort-imports/pull/64](https://togithub.com/IanVS/prettier-plugin-sort-imports/pull/64)) - Remove `importOrderSortSpecifiers` option ([https://github.com/IanVS/prettier-plugin-sort-imports/pull/65](https://togithub.com/IanVS/prettier-plugin-sort-imports/pull/65)) - Remove `importOrderMergeDuplicateImports` option (always on) ([https://github.com/IanVS/prettier-plugin-sort-imports/pull/66](https://togithub.com/IanVS/prettier-plugin-sort-imports/pull/66)) - Replace `importOrderCombineTypeAndValueImports` with `importOrderTypeScriptVersion` ([https://github.com/IanVS/prettier-plugin-sort-imports/pull/67](https://togithub.com/IanVS/prettier-plugin-sort-imports/pull/67)) - Improve default sort order ([https://github.com/IanVS/prettier-plugin-sort-imports/pull/83](https://togithub.com/IanVS/prettier-plugin-sort-imports/pull/83)) ##### 🐛 Bug Fixes - Fix behavior around comments embedded in imports ([https://github.com/IanVS/prettier-plugin-sort-imports/pull/71](https://togithub.com/IanVS/prettier-plugin-sort-imports/pull/71)) - Preserve trailing comments on specifiers ([https://github.com/IanVS/prettier-plugin-sort-imports/pull/80](https://togithub.com/IanVS/prettier-plugin-sort-imports/pull/80)) - Preserve comments and blank lines at top-of-file (in [https://github.com/IanVS/prettier-plugin-sort-imports/pull/82](https://togithub.com/IanVS/prettier-plugin-sort-imports/pull/82)) - Prevent comment gap when re-arranging first import ([https://github.com/IanVS/prettier-plugin-sort-imports/pull/85](https://togithub.com/IanVS/prettier-plugin-sort-imports/pull/85)) - Fix: Top-of-file Comments get duplicated when moving runtime code ([https://github.com/IanVS/prettier-plugin-sort-imports/pull/88](https://togithub.com/IanVS/prettier-plugin-sort-imports/pull/88)) - Vue: Sort both script and setup script ([https://github.com/IanVS/prettier-plugin-sort-imports/pull/90](https://togithub.com/IanVS/prettier-plugin-sort-imports/pull/90)) - Vue and TypeScript: Use correct parser plugins ([https://github.com/IanVS/prettier-plugin-sort-imports/pull/91](https://togithub.com/IanVS/prettier-plugin-sort-imports/pull/91)) ##### ⚡️ Features - Add `<BUILTIN_MODULES>` Special Word ([https://github.com/IanVS/prettier-plugin-sort-imports/pull/86](https://togithub.com/IanVS/prettier-plugin-sort-imports/pull/86)) - Allow Explicit Separator after Top-of-file-comments ([https://github.com/IanVS/prettier-plugin-sort-imports/pull/92](https://togithub.com/IanVS/prettier-plugin-sort-imports/pull/92)) - Support babel-ts parser ([https://github.com/IanVS/prettier-plugin-sort-imports/pull/97](https://togithub.com/IanVS/prettier-plugin-sort-imports/pull/97)) ##### 🛠️ Repo Maintenance - Update dependencies, jest -> vitest ([https://github.com/IanVS/prettier-plugin-sort-imports/pull/59](https://togithub.com/IanVS/prettier-plugin-sort-imports/pull/59)) - Check formatting in CI ([https://github.com/IanVS/prettier-plugin-sort-imports/pull/61](https://togithub.com/IanVS/prettier-plugin-sort-imports/pull/61)) - Update to latest versions of Github Actions ([https://github.com/IanVS/prettier-plugin-sort-imports/pull/73](https://togithub.com/IanVS/prettier-plugin-sort-imports/pull/73)) - Add some more tests for comments ([https://github.com/IanVS/prettier-plugin-sort-imports/pull/77](https://togithub.com/IanVS/prettier-plugin-sort-imports/pull/77)) ##### 🧳 Dependencies - Drop javascript-natural-sort dependency ([https://github.com/IanVS/prettier-plugin-sort-imports/pull/28](https://togithub.com/IanVS/prettier-plugin-sort-imports/pull/28)) - Drop lodash.clone dependency ([https://github.com/IanVS/prettier-plugin-sort-imports/pull/74](https://togithub.com/IanVS/prettier-plugin-sort-imports/pull/74)) - Upgrade Babel to 7.21 ([https://github.com/IanVS/prettier-plugin-sort-imports/pull/72](https://togithub.com/IanVS/prettier-plugin-sort-imports/pull/72)) **Full Changelog**: IanVS/prettier-plugin-sort-imports@v3.7.2...v4.0.0 </details> --- ### Configuration 📅 **Schedule**: Branch creation - "after 12am and before 5am on saturday" in timezone Asia/Kolkata, Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR is behind base branch, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] If you want to rebase/retry this PR, check this box --- This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://app.renovatebot.com/dashboard#github/timelessco/node-js-library-template).
kodiakhq bot
referenced
this pull request
in timelessco/recollect
Jun 4, 2023
…#36) [![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [@ianvs/prettier-plugin-sort-imports](https://togithub.com/ianvs/prettier-plugin-sort-imports) | [`3.7.2` -> `4.0.2`](https://renovatebot.com/diffs/npm/@ianvs%2fprettier-plugin-sort-imports/3.7.2/4.0.2) | [![age](https://badges.renovateapi.com/packages/npm/@ianvs%2fprettier-plugin-sort-imports/4.0.2/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@ianvs%2fprettier-plugin-sort-imports/4.0.2/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@ianvs%2fprettier-plugin-sort-imports/4.0.2/compatibility-slim/3.7.2)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@ianvs%2fprettier-plugin-sort-imports/4.0.2/confidence-slim/3.7.2)](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes <details> <summary>ianvs/prettier-plugin-sort-imports</summary> ### [`v4.0.2`](https://togithub.com/IanVS/prettier-plugin-sort-imports/releases/tag/v4.0.2) [Compare Source](https://togithub.com/ianvs/prettier-plugin-sort-imports/compare/v4.0.1...v4.0.2) #### What's Changed - Account for missing filepath by [@​IanVS](https://togithub.com/IanVS) in [https://github.com/IanVS/prettier-plugin-sort-imports/pull/104](https://togithub.com/IanVS/prettier-plugin-sort-imports/pull/104) **Full Changelog**: IanVS/prettier-plugin-sort-imports@v4.0.1...v4.0.2 ### [`v4.0.1`](https://togithub.com/IanVS/prettier-plugin-sort-imports/releases/tag/v4.0.1) [Compare Source](https://togithub.com/ianvs/prettier-plugin-sort-imports/compare/v4.0.0...v4.0.1) #### What's Changed - Fix cli in Install section by [@​torn4dom4n](https://togithub.com/torn4dom4n) in [https://github.com/IanVS/prettier-plugin-sort-imports/pull/99](https://togithub.com/IanVS/prettier-plugin-sort-imports/pull/99) - Fix dollar sign ($) issue in Vue SFC by [@​istiak-tridip](https://togithub.com/istiak-tridip) in [https://github.com/IanVS/prettier-plugin-sort-imports/pull/101](https://togithub.com/IanVS/prettier-plugin-sort-imports/pull/101) #### New Contributors - [@​torn4dom4n](https://togithub.com/torn4dom4n) made their first contribution in [https://github.com/IanVS/prettier-plugin-sort-imports/pull/99](https://togithub.com/IanVS/prettier-plugin-sort-imports/pull/99) - [@​istiak-tridip](https://togithub.com/istiak-tridip) made their first contribution in [https://github.com/IanVS/prettier-plugin-sort-imports/pull/101](https://togithub.com/IanVS/prettier-plugin-sort-imports/pull/101) **Full Changelog**: IanVS/prettier-plugin-sort-imports@v4.0.0...v4.0.1 ### [`v4.0.0`](https://togithub.com/IanVS/prettier-plugin-sort-imports/releases/tag/v4.0.0) [Compare Source](https://togithub.com/ianvs/prettier-plugin-sort-imports/compare/v3.7.2...v4.0.0) ##### What's Changed This new release focuses on simplifying the plugin options, shipping more useful defaults, handling comments around import statements more reliably, and improving Vue and TypeScript compatibility. We also are targeting Node 16 syntax with our build, though older versions may continue to work (untested). See the full [migration guide](https://togithub.com/IanVS/prettier-plugin-sort-imports/blob/next/docs/MIGRATION.md#migrating-from-v3xx-to-v4xx) for details of the breaking changes. ##### ⬆️ Breaking Changes - Build for Node 16+ ([https://github.com/IanVS/prettier-plugin-sort-imports/pull/59](https://togithub.com/IanVS/prettier-plugin-sort-imports/pull/59)) - Remove `importOrderBuiltinModulesToTop` (always true) ([https://github.com/IanVS/prettier-plugin-sort-imports/pull/60](https://togithub.com/IanVS/prettier-plugin-sort-imports/pull/60)) - Remove `importOrderSeparation` option ([https://github.com/IanVS/prettier-plugin-sort-imports/pull/62](https://togithub.com/IanVS/prettier-plugin-sort-imports/pull/62)) - Remove `importOrderCaseInsensitive` option ([https://github.com/IanVS/prettier-plugin-sort-imports/pull/63](https://togithub.com/IanVS/prettier-plugin-sort-imports/pull/63)) - Remove `importOrderGroupNamespaceSpecifiers` option ([https://github.com/IanVS/prettier-plugin-sort-imports/pull/64](https://togithub.com/IanVS/prettier-plugin-sort-imports/pull/64)) - Remove `importOrderSortSpecifiers` option ([https://github.com/IanVS/prettier-plugin-sort-imports/pull/65](https://togithub.com/IanVS/prettier-plugin-sort-imports/pull/65)) - Remove `importOrderMergeDuplicateImports` option (always on) ([https://github.com/IanVS/prettier-plugin-sort-imports/pull/66](https://togithub.com/IanVS/prettier-plugin-sort-imports/pull/66)) - Replace `importOrderCombineTypeAndValueImports` with `importOrderTypeScriptVersion` ([https://github.com/IanVS/prettier-plugin-sort-imports/pull/67](https://togithub.com/IanVS/prettier-plugin-sort-imports/pull/67)) - Improve default sort order ([https://github.com/IanVS/prettier-plugin-sort-imports/pull/83](https://togithub.com/IanVS/prettier-plugin-sort-imports/pull/83)) ##### 🐛 Bug Fixes - Fix behavior around comments embedded in imports ([https://github.com/IanVS/prettier-plugin-sort-imports/pull/71](https://togithub.com/IanVS/prettier-plugin-sort-imports/pull/71)) - Preserve trailing comments on specifiers ([https://github.com/IanVS/prettier-plugin-sort-imports/pull/80](https://togithub.com/IanVS/prettier-plugin-sort-imports/pull/80)) - Preserve comments and blank lines at top-of-file (in [https://github.com/IanVS/prettier-plugin-sort-imports/pull/82](https://togithub.com/IanVS/prettier-plugin-sort-imports/pull/82)) - Prevent comment gap when re-arranging first import ([https://github.com/IanVS/prettier-plugin-sort-imports/pull/85](https://togithub.com/IanVS/prettier-plugin-sort-imports/pull/85)) - Fix: Top-of-file Comments get duplicated when moving runtime code ([https://github.com/IanVS/prettier-plugin-sort-imports/pull/88](https://togithub.com/IanVS/prettier-plugin-sort-imports/pull/88)) - Vue: Sort both script and setup script ([https://github.com/IanVS/prettier-plugin-sort-imports/pull/90](https://togithub.com/IanVS/prettier-plugin-sort-imports/pull/90)) - Vue and TypeScript: Use correct parser plugins ([https://github.com/IanVS/prettier-plugin-sort-imports/pull/91](https://togithub.com/IanVS/prettier-plugin-sort-imports/pull/91)) ##### ⚡️ Features - Add `<BUILTIN_MODULES>` Special Word ([https://github.com/IanVS/prettier-plugin-sort-imports/pull/86](https://togithub.com/IanVS/prettier-plugin-sort-imports/pull/86)) - Allow Explicit Separator after Top-of-file-comments ([https://github.com/IanVS/prettier-plugin-sort-imports/pull/92](https://togithub.com/IanVS/prettier-plugin-sort-imports/pull/92)) - Support babel-ts parser ([https://github.com/IanVS/prettier-plugin-sort-imports/pull/97](https://togithub.com/IanVS/prettier-plugin-sort-imports/pull/97)) ##### 🛠️ Repo Maintenance - Update dependencies, jest -> vitest ([https://github.com/IanVS/prettier-plugin-sort-imports/pull/59](https://togithub.com/IanVS/prettier-plugin-sort-imports/pull/59)) - Check formatting in CI ([https://github.com/IanVS/prettier-plugin-sort-imports/pull/61](https://togithub.com/IanVS/prettier-plugin-sort-imports/pull/61)) - Update to latest versions of Github Actions ([https://github.com/IanVS/prettier-plugin-sort-imports/pull/73](https://togithub.com/IanVS/prettier-plugin-sort-imports/pull/73)) - Add some more tests for comments ([https://github.com/IanVS/prettier-plugin-sort-imports/pull/77](https://togithub.com/IanVS/prettier-plugin-sort-imports/pull/77)) ##### 🧳 Dependencies - Drop javascript-natural-sort dependency ([https://github.com/IanVS/prettier-plugin-sort-imports/pull/28](https://togithub.com/IanVS/prettier-plugin-sort-imports/pull/28)) - Drop lodash.clone dependency ([https://github.com/IanVS/prettier-plugin-sort-imports/pull/74](https://togithub.com/IanVS/prettier-plugin-sort-imports/pull/74)) - Upgrade Babel to 7.21 ([https://github.com/IanVS/prettier-plugin-sort-imports/pull/72](https://togithub.com/IanVS/prettier-plugin-sort-imports/pull/72)) **Full Changelog**: IanVS/prettier-plugin-sort-imports@v3.7.2...v4.0.0 </details> --- ### Configuration 📅 **Schedule**: Branch creation - "before 4am on Monday" in timezone Asia/Kolkata, Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR is behind base branch, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] If you want to rebase/retry this PR, check this box --- This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://app.renovatebot.com/dashboard#github/timelessco/bookmark-tags).
kodiakhq bot
referenced
this pull request
in timelessco/next-ts-app-template
Jun 11, 2023
…#161) [![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [@ianvs/prettier-plugin-sort-imports](https://togithub.com/ianvs/prettier-plugin-sort-imports) | [`3.7.2` -> `4.0.2`](https://renovatebot.com/diffs/npm/@ianvs%2fprettier-plugin-sort-imports/3.7.2/4.0.2) | [![age](https://badges.renovateapi.com/packages/npm/@ianvs%2fprettier-plugin-sort-imports/4.0.2/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@ianvs%2fprettier-plugin-sort-imports/4.0.2/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@ianvs%2fprettier-plugin-sort-imports/4.0.2/compatibility-slim/3.7.2)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@ianvs%2fprettier-plugin-sort-imports/4.0.2/confidence-slim/3.7.2)](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes <details> <summary>ianvs/prettier-plugin-sort-imports</summary> ### [`v4.0.2`](https://togithub.com/IanVS/prettier-plugin-sort-imports/releases/tag/v4.0.2) [Compare Source](https://togithub.com/ianvs/prettier-plugin-sort-imports/compare/v4.0.1...v4.0.2) #### What's Changed - Account for missing filepath by [@​IanVS](https://togithub.com/IanVS) in [https://github.com/IanVS/prettier-plugin-sort-imports/pull/104](https://togithub.com/IanVS/prettier-plugin-sort-imports/pull/104) **Full Changelog**: IanVS/prettier-plugin-sort-imports@v4.0.1...v4.0.2 ### [`v4.0.1`](https://togithub.com/IanVS/prettier-plugin-sort-imports/releases/tag/v4.0.1) [Compare Source](https://togithub.com/ianvs/prettier-plugin-sort-imports/compare/v4.0.0...v4.0.1) #### What's Changed - Fix cli in Install section by [@​torn4dom4n](https://togithub.com/torn4dom4n) in [https://github.com/IanVS/prettier-plugin-sort-imports/pull/99](https://togithub.com/IanVS/prettier-plugin-sort-imports/pull/99) - Fix dollar sign ($) issue in Vue SFC by [@​istiak-tridip](https://togithub.com/istiak-tridip) in [https://github.com/IanVS/prettier-plugin-sort-imports/pull/101](https://togithub.com/IanVS/prettier-plugin-sort-imports/pull/101) #### New Contributors - [@​torn4dom4n](https://togithub.com/torn4dom4n) made their first contribution in [https://github.com/IanVS/prettier-plugin-sort-imports/pull/99](https://togithub.com/IanVS/prettier-plugin-sort-imports/pull/99) - [@​istiak-tridip](https://togithub.com/istiak-tridip) made their first contribution in [https://github.com/IanVS/prettier-plugin-sort-imports/pull/101](https://togithub.com/IanVS/prettier-plugin-sort-imports/pull/101) **Full Changelog**: IanVS/prettier-plugin-sort-imports@v4.0.0...v4.0.1 ### [`v4.0.0`](https://togithub.com/IanVS/prettier-plugin-sort-imports/releases/tag/v4.0.0) [Compare Source](https://togithub.com/ianvs/prettier-plugin-sort-imports/compare/v3.7.2...v4.0.0) #### What's Changed This new release focuses on simplifying the plugin options, shipping more useful defaults, handling comments around import statements more reliably, and improving Vue and TypeScript compatibility. We also are targeting Node 16 syntax with our build, though older versions may continue to work (untested). See the full [migration guide](https://togithub.com/IanVS/prettier-plugin-sort-imports/blob/next/docs/MIGRATION.md#migrating-from-v3xx-to-v4xx) for details of the breaking changes. ##### ⬆️ Breaking Changes - Build for Node 16+ ([https://github.com/IanVS/prettier-plugin-sort-imports/pull/59](https://togithub.com/IanVS/prettier-plugin-sort-imports/pull/59)) - Remove `importOrderBuiltinModulesToTop` (always true) ([https://github.com/IanVS/prettier-plugin-sort-imports/pull/60](https://togithub.com/IanVS/prettier-plugin-sort-imports/pull/60)) - Remove `importOrderSeparation` option ([https://github.com/IanVS/prettier-plugin-sort-imports/pull/62](https://togithub.com/IanVS/prettier-plugin-sort-imports/pull/62)) - Remove `importOrderCaseInsensitive` option ([https://github.com/IanVS/prettier-plugin-sort-imports/pull/63](https://togithub.com/IanVS/prettier-plugin-sort-imports/pull/63)) - Remove `importOrderGroupNamespaceSpecifiers` option ([https://github.com/IanVS/prettier-plugin-sort-imports/pull/64](https://togithub.com/IanVS/prettier-plugin-sort-imports/pull/64)) - Remove `importOrderSortSpecifiers` option ([https://github.com/IanVS/prettier-plugin-sort-imports/pull/65](https://togithub.com/IanVS/prettier-plugin-sort-imports/pull/65)) - Remove `importOrderMergeDuplicateImports` option (always on) ([https://github.com/IanVS/prettier-plugin-sort-imports/pull/66](https://togithub.com/IanVS/prettier-plugin-sort-imports/pull/66)) - Replace `importOrderCombineTypeAndValueImports` with `importOrderTypeScriptVersion` ([https://github.com/IanVS/prettier-plugin-sort-imports/pull/67](https://togithub.com/IanVS/prettier-plugin-sort-imports/pull/67)) - Improve default sort order ([https://github.com/IanVS/prettier-plugin-sort-imports/pull/83](https://togithub.com/IanVS/prettier-plugin-sort-imports/pull/83)) ##### 🐛 Bug Fixes - Fix behavior around comments embedded in imports ([https://github.com/IanVS/prettier-plugin-sort-imports/pull/71](https://togithub.com/IanVS/prettier-plugin-sort-imports/pull/71)) - Preserve trailing comments on specifiers ([https://github.com/IanVS/prettier-plugin-sort-imports/pull/80](https://togithub.com/IanVS/prettier-plugin-sort-imports/pull/80)) - Preserve comments and blank lines at top-of-file (in [https://github.com/IanVS/prettier-plugin-sort-imports/pull/82](https://togithub.com/IanVS/prettier-plugin-sort-imports/pull/82)) - Prevent comment gap when re-arranging first import ([https://github.com/IanVS/prettier-plugin-sort-imports/pull/85](https://togithub.com/IanVS/prettier-plugin-sort-imports/pull/85)) - Fix: Top-of-file Comments get duplicated when moving runtime code ([https://github.com/IanVS/prettier-plugin-sort-imports/pull/88](https://togithub.com/IanVS/prettier-plugin-sort-imports/pull/88)) - Vue: Sort both script and setup script ([https://github.com/IanVS/prettier-plugin-sort-imports/pull/90](https://togithub.com/IanVS/prettier-plugin-sort-imports/pull/90)) - Vue and TypeScript: Use correct parser plugins ([https://github.com/IanVS/prettier-plugin-sort-imports/pull/91](https://togithub.com/IanVS/prettier-plugin-sort-imports/pull/91)) ##### ⚡️ Features - Add `<BUILTIN_MODULES>` Special Word ([https://github.com/IanVS/prettier-plugin-sort-imports/pull/86](https://togithub.com/IanVS/prettier-plugin-sort-imports/pull/86)) - Allow Explicit Separator after Top-of-file-comments ([https://github.com/IanVS/prettier-plugin-sort-imports/pull/92](https://togithub.com/IanVS/prettier-plugin-sort-imports/pull/92)) - Support babel-ts parser ([https://github.com/IanVS/prettier-plugin-sort-imports/pull/97](https://togithub.com/IanVS/prettier-plugin-sort-imports/pull/97)) ##### 🛠️ Repo Maintenance - Update dependencies, jest -> vitest ([https://github.com/IanVS/prettier-plugin-sort-imports/pull/59](https://togithub.com/IanVS/prettier-plugin-sort-imports/pull/59)) - Check formatting in CI ([https://github.com/IanVS/prettier-plugin-sort-imports/pull/61](https://togithub.com/IanVS/prettier-plugin-sort-imports/pull/61)) - Update to latest versions of Github Actions ([https://github.com/IanVS/prettier-plugin-sort-imports/pull/73](https://togithub.com/IanVS/prettier-plugin-sort-imports/pull/73)) - Add some more tests for comments ([https://github.com/IanVS/prettier-plugin-sort-imports/pull/77](https://togithub.com/IanVS/prettier-plugin-sort-imports/pull/77)) ##### 🧳 Dependencies - Drop javascript-natural-sort dependency ([https://github.com/IanVS/prettier-plugin-sort-imports/pull/28](https://togithub.com/IanVS/prettier-plugin-sort-imports/pull/28)) - Drop lodash.clone dependency ([https://github.com/IanVS/prettier-plugin-sort-imports/pull/74](https://togithub.com/IanVS/prettier-plugin-sort-imports/pull/74)) - Upgrade Babel to 7.21 ([https://github.com/IanVS/prettier-plugin-sort-imports/pull/72](https://togithub.com/IanVS/prettier-plugin-sort-imports/pull/72)) **Full Changelog**: IanVS/prettier-plugin-sort-imports@v3.7.2...v4.0.0 </details> --- ### Configuration 📅 **Schedule**: Branch creation - "before 4am on Monday" in timezone Asia/Kolkata, Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR is behind base branch, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] If you want to rebase/retry this PR, check this box --- This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://app.renovatebot.com/dashboard#github/timelessco/next-ts-app).
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Ref: #22
This removes the
importOrderMergeDuplicateImports
option. I can't think of a reason you'd need to have multiple imports from the same module in different statements, and it can cause confusion if you do have them.