Skip to content

Commit

Permalink
Merge branch 'dev' into feat/nuxtignore
Browse files Browse the repository at this point in the history
  • Loading branch information
manniL committed Jan 15, 2019
2 parents 831482f + 36ca945 commit f932271
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/core/src/hookable.js
Expand Up @@ -34,7 +34,7 @@ export default class Hookable {
try {
await sequence(this._hooks[name], fn => fn(...args))
} catch (err) {
name !== 'error' && this.callHook('error', err)
name !== 'error' && await this.callHook('error', err)
consola.fatal(err)
}
}
Expand Down

0 comments on commit f932271

Please sign in to comment.