From 14063f0bb79c4ac38d3e96d1d0835f3bc4886955 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Mon, 26 Aug 2024 23:44:10 +0000 Subject: [PATCH] chore: release eslint-plugin-import-x --- .changeset/great-dodos-dream.md | 14 -------------- .changeset/tasty-colts-cover.md | 5 ----- CHANGELOG.md | 17 +++++++++++++++++ package.json | 2 +- 4 files changed, 18 insertions(+), 20 deletions(-) delete mode 100644 .changeset/great-dodos-dream.md delete mode 100644 .changeset/tasty-colts-cover.md diff --git a/.changeset/great-dodos-dream.md b/.changeset/great-dodos-dream.md deleted file mode 100644 index fcdaab357..000000000 --- a/.changeset/great-dodos-dream.md +++ /dev/null @@ -1,14 +0,0 @@ ---- -"eslint-plugin-import-x": minor ---- - -Add ESLint flat configuration presets. You can access them with: - -```ts -import eslintPluginImportX from 'eslint-plugin-import-x'; - -eslintPluginImportX.flatConfigs.recommended; -eslintPluginImportX.flatConfigs.react; -eslintPluginImportX.flatConfigs.typescript; -eslintPluginImportX.flatConfigs.electron; -``` diff --git a/.changeset/tasty-colts-cover.md b/.changeset/tasty-colts-cover.md deleted file mode 100644 index 5662c7f77..000000000 --- a/.changeset/tasty-colts-cover.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"eslint-plugin-import-x": minor ---- - -Added `no-rename-default` that forbid importing a default export by a different name. Originally created by @whitneyit, ported by @SukkaW diff --git a/CHANGELOG.md b/CHANGELOG.md index 485384bfa..1d3ddd60f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,22 @@ # eslint-plugin-import-x +## 4.1.0 + +### Minor Changes + +- [#122](https://github.com/un-ts/eslint-plugin-import-x/pull/122) [`cd52e86`](https://github.com/un-ts/eslint-plugin-import-x/commit/cd52e86f44754b4dd0c1aae1e9fd5e952e90938f) Thanks [@michaelfaith](https://github.com/michaelfaith)! - Add ESLint flat configuration presets. You can access them with: + + ```ts + import eslintPluginImportX from "eslint-plugin-import-x"; + + eslintPluginImportX.flatConfigs.recommended; + eslintPluginImportX.flatConfigs.react; + eslintPluginImportX.flatConfigs.typescript; + eslintPluginImportX.flatConfigs.electron; + ``` + +- [#132](https://github.com/un-ts/eslint-plugin-import-x/pull/132) [`9948c78`](https://github.com/un-ts/eslint-plugin-import-x/commit/9948c7894758dd461f6d75b89c6425fee304789a) Thanks [@SukkaW](https://github.com/SukkaW)! - Added `no-rename-default` that forbid importing a default export by a different name. Originally created by @whitneyit, ported by @SukkaW + ## 4.0.0 ### Major Changes diff --git a/package.json b/package.json index a23ed1175..5c0333bf0 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "eslint-plugin-import-x", - "version": "4.0.0", + "version": "4.1.0", "description": "Import with sanity.", "repository": "git+https://github.com/un-ts/eslint-plugin-import-x", "author": "JounQin (https://www.1stG.me)",