Skip to content

Commit

Permalink
Use console.log to remove logalot
Browse files Browse the repository at this point in the history
  • Loading branch information
1000ch committed Oct 15, 2021
1 parent b317c42 commit 1057a37
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
5 changes: 2 additions & 3 deletions lib/install.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
'use strict';
const path = require('path');
const log = require('logalot');
const bin = require('.');

const args = [
Expand All @@ -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);
});
3 changes: 1 addition & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down

0 comments on commit 1057a37

Please sign in to comment.