Skip to content

Commit

Permalink
Print a readable error when a npm module is missing, or any other web…
Browse files Browse the repository at this point in the history
…pack error
  • Loading branch information
mcampa committed Mar 6, 2017
1 parent 4a56d14 commit 586fb47
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion stencil.conf.js
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ function development(Bs) {
// Rebuild the bundle once at bootup
compiler.watch({}, function(err, stats) {
if (err) {
console.error(err)
console.error(err.message, err.details);
}

Bs.reload();
Expand Down

0 comments on commit 586fb47

Please sign in to comment.