From 1057a37682b69414321431e927575cd069efef5a Mon Sep 17 00:00:00 2001 From: 1000ch Date: Fri, 15 Oct 2021 16:36:45 +0900 Subject: [PATCH] Use console.log to remove logalot --- lib/install.js | 5 ++--- package.json | 3 +-- 2 files changed, 3 insertions(+), 5 deletions(-) diff --git a/lib/install.js b/lib/install.js index c6c1564..ca9797a 100644 --- a/lib/install.js +++ b/lib/install.js @@ -1,6 +1,5 @@ 'use strict'; const path = require('path'); -const log = require('logalot'); const bin = require('.'); const args = [ @@ -12,7 +11,7 @@ const args = [ ]; bin.run(args).then(() => { - log.success('pngout pre-build test passed successfully'); + console.log('pngout pre-build test passed successfully'); }).catch(error => { - log.error(error.stack); + console.error(error.stack); }); diff --git a/package.json b/package.json index db26033..cb26c8c 100644 --- a/package.json +++ b/package.json @@ -52,8 +52,7 @@ "pngout" ], "dependencies": { - "bin-wrapper": "^4.0.0", - "logalot": "^2.0.0" + "bin-wrapper": "^4.0.0" }, "devDependencies": { "ava": "^3.8.0",