Skip to content

Commit

Permalink
Fix #76 - move npm to a development dependency, version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
drudru committed Apr 3, 2023
1 parent abae359 commit a30bb48
Show file tree
Hide file tree
Showing 5 changed files with 36 additions and 19 deletions.
2 changes: 1 addition & 1 deletion ansi_up.js
Expand Up @@ -34,7 +34,7 @@ var PacketKind;
})(PacketKind || (PacketKind = {}));
var AnsiUp = (function () {
function AnsiUp() {
this.VERSION = "5.2.0";
this.VERSION = "5.2.1";
this.setup_palettes();
this._use_classes = false;
this.bold = false;
Expand Down
2 changes: 1 addition & 1 deletion ansi_up.ts
Expand Up @@ -52,7 +52,7 @@ interface TextPacket {

class AnsiUp
{
VERSION = "5.2.0";
VERSION = "5.2.1";

//
// *** SEE README ON GITHUB FOR PUBLIC API ***
Expand Down
2 changes: 1 addition & 1 deletion dist/ansi_up.js.include
Expand Up @@ -15,7 +15,7 @@ var PacketKind;
})(PacketKind || (PacketKind = {}));
var AnsiUp = (function () {
function AnsiUp() {
this.VERSION = "5.2.0";
this.VERSION = "5.2.1";
this.setup_palettes();
this._use_classes = false;
this.bold = false;
Expand Down
43 changes: 31 additions & 12 deletions package-lock.json

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

6 changes: 2 additions & 4 deletions package.json
@@ -1,6 +1,6 @@
{
"name": "ansi_up",
"version": "5.2.0",
"version": "5.2.1",
"description": "Convert ansi sequences in strings to colorful HTML",
"keywords": [
"ansi",
Expand All @@ -25,11 +25,9 @@
"build": "make typescript"
},
"devDependencies": {
"npm": "^9.6.3",
"mocha": "^10.2.0",
"should": "*",
"typescript": "^3.9.10"
},
"dependencies": {
"npm": "^9.6.3"
}
}

0 comments on commit a30bb48

Please sign in to comment.