diff --git a/CHANGELOG.md b/CHANGELOG.md index bc865c8..37633b5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Change log +## 2.0.2 (2023-11-14) + +- fix: could not find a declaration file for module 'ansis' + ## 2.0.1 (2023-11-03) - fix: missing exports of ansis.strip() and ansis.export() functions (issue was introduced in v2.0.0) diff --git a/package.json b/package.json index 3892854..6c76e24 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "ansis", - "version": "2.0.1", + "version": "2.0.2", "description": "Colorize text in terminal or console output with ANSI colors & styles", "keywords": [ "ansi", @@ -59,10 +59,12 @@ "types": "./src/index.d.ts", "exports": { ".": { + "types": "./index.d.ts", "import": "./index.mjs", "require": "./index.js" }, "./colors": { + "types": "./index.d.ts", "import": "./index.mjs", "require": "./index.js" } diff --git a/pkg/package.json b/pkg/package.json index 17c5620..89c7747 100644 --- a/pkg/package.json +++ b/pkg/package.json @@ -1,6 +1,6 @@ { "name": "ansis", - "version": "2.0.1", + "version": "2.0.2", "description": "Colorize text in terminal or console output with ANSI colors & styles", "keywords": [ "ansi", @@ -54,10 +54,12 @@ "types": "./index.d.ts", "exports": { ".": { + "types": "./index.d.ts", "require": "./index.js", "import": "./index.mjs" }, "./colors": { + "types": "./index.d.ts", "require": "./index.js", "import": "./index.mjs" }