From c9992b9b205988c054472e3b077b3227b2bc872a Mon Sep 17 00:00:00 2001 From: Alexander Gesinn Date: Wed, 27 Jan 2021 14:32:07 +0100 Subject: [PATCH] updated dependencies, fixes #1 and #2 --- package.json | 4 ++-- test/test.spec.js | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/package.json b/package.json index 42be0ee..71236cf 100644 --- a/package.json +++ b/package.json @@ -22,8 +22,8 @@ "colors" ], "dependencies": { - "chalk": "^1.1.3", - "prettyjson": "^1.1.3" + "chalk": "^3.0.0", + "prettyjson": "^1.2.1" }, "devDependencies": { "chai": "^3.5.0", diff --git a/test/test.spec.js b/test/test.spec.js index 031d91d..46a6784 100644 --- a/test/test.spec.js +++ b/test/test.spec.js @@ -46,7 +46,7 @@ describe('semlog logger', function() { console.log(' Testing Log Objects and Errors'); console.log('-------------------------------------------------------------'); - // Create a new object, that prototypally inherits from the Error constructor. + // Create a new object, that prototypical inherits from the Error constructor. function MyError(message) { this.name = 'MyError'; this.message = message || 'Default Message';