Skip to content

Commit

Permalink
Merge pull request #14 from will-stone/patch-1
Browse files Browse the repository at this point in the history
fix: could not find a declaration file for module 'ansis'
  • Loading branch information
webdiscus authored Nov 14, 2023
2 parents bdbda7e + 1f32973 commit c2197fd
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)
Expand Down
4 changes: 3 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down Expand Up @@ -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"
}
Expand Down
4 changes: 3 additions & 1 deletion pkg/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down Expand Up @@ -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"
}
Expand Down

0 comments on commit c2197fd

Please sign in to comment.