From b818b8dbc31a02e7b2e99db9c96663776dbd2957 Mon Sep 17 00:00:00 2001 From: JounQin Date: Sat, 29 Mar 2025 02:17:34 +0800 Subject: [PATCH 1/3] docs: update GitHub Actions badge --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 87418bc..0836f05 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # eslint-import-resolver-typescript -[![GitHub Actions](https://github.com/import-js/eslint-import-resolver-typescript/workflows/CI/badge.svg)](https://github.com/import-js/eslint-import-resolver-typescript/actions/workflows/ci.yml) +[![GitHub Actions Workflow Status](https://img.shields.io/github/actions/workflow/status/import-js/eslint-import-resolver-typescript/ci.yml?branch=master)](https://github.com/import-js/eslint-import-resolver-typescript/actions/workflows/ci.yml?query=branch%3Amaster) [![type-coverage](https://img.shields.io/badge/dynamic/json.svg?label=type-coverage&prefix=%E2%89%A5&suffix=%&query=$.typeCoverage.atLeast&uri=https%3A%2F%2Fraw.githubusercontent.com%2Fimport-js%2Feslint-import-resolver-typescript%2Fmaster%2Fpackage.json)](https://github.com/plantain-00/type-coverage) [![npm](https://img.shields.io/npm/v/eslint-import-resolver-typescript.svg)](https://www.npmjs.com/package/eslint-import-resolver-typescript) [![GitHub Release](https://img.shields.io/github/release/import-js/eslint-import-resolver-typescript)](https://github.com/import-js/eslint-import-resolver-typescript/releases) From aeb558f0a5911217e8eff6fe6e1b4ac4d4038c71 Mon Sep 17 00:00:00 2001 From: JounQin Date: Sat, 29 Mar 2025 02:20:16 +0800 Subject: [PATCH 2/3] fix: add missing `index.d.cts` file --- .changeset/old-buses-know.md | 5 +++++ .github/workflows/pkg-pr-new.yml | 2 +- package.json | 3 ++- 3 files changed, 8 insertions(+), 2 deletions(-) create mode 100644 .changeset/old-buses-know.md diff --git a/.changeset/old-buses-know.md b/.changeset/old-buses-know.md new file mode 100644 index 0000000..d14a81e --- /dev/null +++ b/.changeset/old-buses-know.md @@ -0,0 +1,5 @@ +--- +"eslint-import-resolver-typescript": patch +--- + +fix: add missing `index.d.cts` file diff --git a/.github/workflows/pkg-pr-new.yml b/.github/workflows/pkg-pr-new.yml index e8860eb..f9db2bd 100644 --- a/.github/workflows/pkg-pr-new.yml +++ b/.github/workflows/pkg-pr-new.yml @@ -27,4 +27,4 @@ jobs: - name: Build run: yarn build - - run: yarn dlx pkg-pr-new publish + - run: yarn dlx pkg-pr-new publish --compact diff --git a/package.json b/package.json index d2f9705..bebc324 100644 --- a/package.json +++ b/package.json @@ -5,7 +5,7 @@ "description": "This plugin adds `TypeScript` support to `eslint-plugin-import`", "repository": "https://github.com/import-js/eslint-import-resolver-typescript", "author": "Alex Gorbatchev ", - "contributors": [ + "maintainers": [ "JounQin (https://www.1stG.me)" ], "funding": "https://opencollective.com/eslint-import-resolver-typescript", @@ -39,6 +39,7 @@ }, "types": "lib/index.d.ts", "files": [ + "index.d.cts", "lib", "!**/*.tsbuildinfo" ], From 990805c04f3d697ed63d366ef2a9c188133da379 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 28 Mar 2025 18:28:39 +0000 Subject: [PATCH 3/3] chore: release eslint-import-resolver-typescript (#420) Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> --- .changeset/old-buses-know.md | 5 ----- CHANGELOG.md | 6 ++++++ package.json | 2 +- 3 files changed, 7 insertions(+), 6 deletions(-) delete mode 100644 .changeset/old-buses-know.md diff --git a/.changeset/old-buses-know.md b/.changeset/old-buses-know.md deleted file mode 100644 index d14a81e..0000000 --- a/.changeset/old-buses-know.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"eslint-import-resolver-typescript": patch ---- - -fix: add missing `index.d.cts` file diff --git a/CHANGELOG.md b/CHANGELOG.md index bb4d4f9..ce861c6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## 4.2.7 + +### Patch Changes + +- [`aeb558f`](https://github.com/import-js/eslint-import-resolver-typescript/commit/aeb558f0a5911217e8eff6fe6e1b4ac4d4038c71) Thanks [@JounQin](https://github.com/JounQin)! - fix: add missing `index.d.cts` file + ## 4.2.6 ### Patch Changes diff --git a/package.json b/package.json index bebc324..1052a62 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "eslint-import-resolver-typescript", - "version": "4.2.6", + "version": "4.2.7", "type": "module", "description": "This plugin adds `TypeScript` support to `eslint-plugin-import`", "repository": "https://github.com/import-js/eslint-import-resolver-typescript",