diff --git a/.changeset/lemon-trains-hang.md b/.changeset/lemon-trains-hang.md deleted file mode 100644 index 7a616ee..0000000 --- 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 3192f4f..1e1bc76 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 9f2f713..a1819ec 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",