Skip to content

Commit

Permalink
log errors on pluginload (#140)
Browse files Browse the repository at this point in the history
  • Loading branch information
Jasper De Moor authored and devongovett committed Dec 9, 2017
1 parent c8295de commit acdf979
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/Bundler.js
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,9 @@ class Bundler extends EventEmitter {
localRequire(dep, this.mainFile)(this);
}
}
} catch (err) {}
} catch (err) {
this.logger.warn(err);
}
}

async bundle() {
Expand Down

0 comments on commit acdf979

Please sign in to comment.