UNPKG

orionsoft-react-scripts

Version:

Orionsoft Configuration and scripts for Create React App.

19 lines (18 loc) 524 B
/* MIT License http://www.opensource.org/licenses/mit-license.php Author Tobias Koppers @sokra */ function NoErrorsPlugin() {} module.exports = NoErrorsPlugin; NoErrorsPlugin.prototype.apply = function(compiler) { compiler.plugin("should-emit", function(compilation) { if(compilation.errors.length > 0) return false; }); compiler.plugin("compilation", function(compilation) { compilation.plugin("should-record", function() { if(compilation.errors.length > 0) return false; }); }); };