From 3d6251de43d1bb85868063faa444380f39c76a84 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Arnaud=20Barr=C3=A9?= Date: Sat, 11 Jan 2025 22:11:56 +0100 Subject: [PATCH] Fix types [publish] --- CHANGELOG.md | 4 ++++ package.json | 2 +- src/types.d.ts | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c6ca1d6..d8c8290 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## 0.4.18 + +ESM/CJS interop is the worth that happend to this ecosystem, this is all I have to say. + ## 0.4.17 - Fix detection of local components to not generate warning on for variable inside JSX files that follow React component naming (fixes #75) diff --git a/package.json b/package.json index 9099a85..84f8474 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "eslint-plugin-react-refresh", - "version": "0.4.17", + "version": "0.4.18", "type": "module", "license": "MIT", "scripts": { diff --git a/src/types.d.ts b/src/types.d.ts index 09090ed..26d7393 100644 --- a/src/types.d.ts +++ b/src/types.d.ts @@ -11,4 +11,4 @@ declare const _default: { }; }; -export = { default: _default }; +export = _default;