From ca9066692daf597c3273d4a3b3c4b134862694df Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 17 Mar 2025 09:52:21 +0000 Subject: [PATCH] chore: release eslint-import-resolver-typescript --- .changeset/lemon-trains-hang.md | 9 --------- CHANGELOG.md | 10 ++++++++++ package.json | 2 +- 3 files changed, 11 insertions(+), 10 deletions(-) delete mode 100644 .changeset/lemon-trains-hang.md diff --git a/.changeset/lemon-trains-hang.md b/.changeset/lemon-trains-hang.md deleted file mode 100644 index 7a616ee5..00000000 --- a/.changeset/lemon-trains-hang.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -"eslint-import-resolver-typescript": minor ---- - -feat: add a new `bun?: boolean` option for `bun` users - close #386 - -`process.versions.bun` is unavailable even with `bun eslint` due to its own design, -but checking `bun` modules for non-bun users is incorrect behavior and just wasting time, -so a new option is added for such case, you can still run with `bun --bun eslint` without this option enabled diff --git a/CHANGELOG.md b/CHANGELOG.md index 3192f4f4..1e1bc76a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,15 @@ # Changelog +## 4.1.0 + +### Minor Changes + +- [#387](https://github.com/import-js/eslint-import-resolver-typescript/pull/387) [`ef5cd10`](https://github.com/import-js/eslint-import-resolver-typescript/commit/ef5cd1083207d560b35694b99ccfefa4a1234acb) Thanks [@JounQin](https://github.com/JounQin)! - feat: add a new `bun?: boolean` option for `bun` users - close #386 + + `process.versions.bun` is unavailable even with `bun eslint` due to its own design, + but checking `bun` modules for non-bun users is incorrect behavior and just wasting time, + so a new option is added for such case, you can still run with `bun --bun eslint` without this option enabled + ## 4.0.0 ### Major Changes diff --git a/package.json b/package.json index 9f2f713a..a1819ec6 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "eslint-import-resolver-typescript", - "version": "4.0.0", + "version": "4.1.0", "type": "module", "description": "This plugin adds `TypeScript` support to `eslint-plugin-import`", "repository": "git+https://github.com/import-js/eslint-import-resolver-typescript",