You've already forked hugo-extended
mirror of
https://github.com/jakejarvis/hugo-extended.git
synced 2025-07-03 14:36:38 -04:00
chore(*): upgrade bin-wrapper (#64)
This commit is contained in:
@ -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');
|
||||
});
|
||||
|
3230
package-lock.json
generated
3230
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
@ -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"
|
||||
},
|
||||
|
Reference in New Issue
Block a user