-
-
Notifications
You must be signed in to change notification settings - Fork 27
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
fix(no-duplicates
): merge type import as
with value import
#204
Conversation
🦋 Changeset detectedLatest commit: f17bfdb The changes in this PR will be included in the next version bump. This PR includes changesets to release 1 package
Not sure what this means? Click here to learn what changesets are. Click here if you're a maintainer who wants to add another changeset to this PR |
This pull request is automatically built and testable in CodeSandbox. To see build info of the built libraries, click here or the icon next to each commit SHA. |
no-duplicates
auto-fix bugno-duplicates
): merge type import as
with value import
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM! Would you like to include a changeset to describe your changes? This is for automated changelog generation.
You can add a changeset through yarn changeset
.
Was the CI supposed to release it? Looks like it didn't |
The changeset action will create a release PR (the current one is #202). I will merge that to make a new release! |
Ah I see. I appreciate it, thank you! |
##### [v4.5.1](https://github.com/un-ts/eslint-plugin-import-x/blob/HEAD/CHANGELOG.md#451) ##### Patch Changes - [#198](un-ts/eslint-plugin-import-x#198) [`ac6d2e1`](un-ts/eslint-plugin-import-x@ac6d2e1) Thanks [@voxpelli](https://github.com/voxpelli)! - Fix [#197](un-ts/eslint-plugin-import-x#197) with missing types - [#204](un-ts/eslint-plugin-import-x#204) [`32e9b55`](un-ts/eslint-plugin-import-x@32e9b55) Thanks [@privatenumber](https://github.com/privatenumber)! - fix type-import and value-import merging when import-as is used
There was a bug when merging a type-import with a value-import, when the type import uses
import-as
syntax.This handles the
import-as
case.