Skip to content

Commit

Permalink
fix: Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
mischah committed Feb 11, 2019
1 parent ac0490c commit d1527cd
Show file tree
Hide file tree
Showing 5 changed files with 3,464 additions and 4,638 deletions.
2 changes: 1 addition & 1 deletion lib/error-notifier.js
Expand Up @@ -9,6 +9,6 @@ module.exports = (command, opts) => {
return new Promise((resolve, reject) => {
execa.shell(command, {env: {FORCE_COLOR: true}})
.then(result => resolve(result))
.catch(err => notifier.notify(notifierOptions(opts), () => reject(err)));
.catch(error => notifier.notify(notifierOptions(opts), () => reject(error)));
});
};

0 comments on commit d1527cd

Please sign in to comment.