Skip to content

Commit

Permalink
Fix for #87 - types specified wrong in package.json
Browse files Browse the repository at this point in the history
  • Loading branch information
drudru committed Aug 25, 2023
1 parent 3109614 commit ef087f9
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion ansi_up.js
Expand Up @@ -15,7 +15,7 @@ var PacketKind;
})(PacketKind || (PacketKind = {}));
export class AnsiUp {
constructor() {
this.VERSION = "6.0.1";
this.VERSION = "6.0.2";
this.setup_palettes();
this._use_classes = false;
this.bold = false;
Expand Down
2 changes: 1 addition & 1 deletion ansi_up.ts
Expand Up @@ -53,7 +53,7 @@ interface TextPacket {

export class AnsiUp
{
VERSION = "6.0.1";
VERSION = "6.0.2";

//
// *** SEE README ON GITHUB FOR PUBLIC API ***
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
@@ -1,6 +1,6 @@
{
"name": "ansi_up",
"version": "6.0.1",
"version": "6.0.2",
"description": "Convert ansi sequences in strings to colorful HTML",
"keywords": [
"ansi",
Expand All @@ -10,7 +10,7 @@
"license": "MIT",
"main": "./ansi_up.js",
"type": "module",
"types": "./dist/ansi_up.d.ts",
"types": "./ansi_up.d.ts",
"repository": {
"type": "git",
"url": "git://github.com/drudru/ansi_up.git"
Expand Down

0 comments on commit ef087f9

Please sign in to comment.