chore(*): upgrade bin-wrapper (#64)

This commit is contained in:
Shun Sato
2018-07-31 03:50:13 +09:00
committed by GitHub
parent 5a99e377af
commit 5214d55122
3 changed files with 1152 additions and 2092 deletions
+6 -6
View File
@@ -1,11 +1,11 @@
const bin = require('./');
const log = require('logalot');
bin.run(['version'], err => {
if (err) {
log.error(err.message);
log.error('Hugo binary installation failed');
return;
}
bin.run(['version'])
.then(() => {
log.success('Hugo binary is installed successfully');
})
.catch(err => {
log.error(err.message);
log.error('Hugo binary installation failed');
});
+1145 -2085
View File
File diff suppressed because it is too large Load Diff
+1 -1
View File
@@ -11,7 +11,7 @@
"hugo": "cli.js"
},
"dependencies": {
"bin-wrapper": "3.0.2",
"bin-wrapper": "4.0.0",
"del-cli": "1.1.0",
"logalot": "2.1.0"
},