diff --git a/.changeset/silent-cows-drive.md b/.changeset/silent-cows-drive.md deleted file mode 100644 index 9d0a817b..00000000 --- a/.changeset/silent-cows-drive.md +++ /dev/null @@ -1,13 +0,0 @@ ---- -"eslint-import-resolver-typescript": minor ---- - -feat: make `is-bun-module` as optional peer dependency - -Technically this is a BREAKING CHANGE, but considering we just raise out v4 recently and this only affects `bun` users, `bun --bun eslint` even works without this dependency, so I'd consider this as a minor change. - -So for `bun` users, there are three options: - -1. install `is-bun-module` dependency manually and use `bun: true` option -2. run `eslint` with `bun --bun eslint` w/o `bun: true` option -3. enable `run#bun` in [`bunfig.toml`](https://bun.sh/docs/runtime/bunfig#run-bun-auto-alias-node-to-bun) w/o `bun: true` option diff --git a/CHANGELOG.md b/CHANGELOG.md index e0cbd42c..2bf2586f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,19 @@ # Changelog +## 4.2.0 + +### Minor Changes + +- [#391](https://github.com/import-js/eslint-import-resolver-typescript/pull/391) [`c8121e5`](https://github.com/import-js/eslint-import-resolver-typescript/commit/c8121e5eb4ce25a79396ae75df16d35fc67acbc6) Thanks [@JounQin](https://github.com/JounQin)! - feat: make `is-bun-module` as optional peer dependency + + Technically this is a BREAKING CHANGE, but considering we just raise out v4 recently and this only affects `bun` users, `bun --bun eslint` even works without this dependency, so I'd consider this as a minor change. + + So for `bun` users, there are three options: + + 1. install `is-bun-module` dependency manually and use `bun: true` option + 2. run `eslint` with `bun --bun eslint` w/o `bun: true` option + 3. enable `run#bun` in [`bunfig.toml`](https://bun.sh/docs/runtime/bunfig#run-bun-auto-alias-node-to-bun) w/o `bun: true` option + ## 4.1.1 ### Patch Changes diff --git a/package.json b/package.json index 5dd14c27..b96a708e 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "eslint-import-resolver-typescript", - "version": "4.1.1", + "version": "4.2.0", "type": "module", "description": "This plugin adds `TypeScript` support to `eslint-plugin-import`", "repository": "git+https://github.com/import-js/eslint-import-resolver-typescript",