Skip to content

Commit

Permalink
fix(error diag): specific restart reason for each missing dep
Browse files Browse the repository at this point in the history
  • Loading branch information
Guillaume Chau committed Nov 15, 2018
1 parent db448e6 commit baf0f5c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ module.exports = (api, options) => {
handler: async (compiler, stats, error) => {
const name = getModuleName(error)
await installModule(name)
await api.restart('auto-install-missing-dep')
await api.restart(`auto-install-missing-dep:${name}`)
},
})
}
Expand Down

0 comments on commit baf0f5c

Please sign in to comment.