mirror of https://github.com/webpack/webpack.git
				
				
				
			
		
			
				
	
	
		
			27 lines
		
	
	
		
			729 B
		
	
	
	
		
			JavaScript
		
	
	
	
			
		
		
	
	
			27 lines
		
	
	
		
			729 B
		
	
	
	
		
			JavaScript
		
	
	
	
| /*
 | |
| 	MIT License http://www.opensource.org/licenses/mit-license.php
 | |
| 	Author Tobias Koppers @sokra
 | |
| */
 | |
| function NoErrorsPlugin() {}
 | |
| 
 | |
| var deprecationReported = false;
 | |
| 
 | |
| module.exports = NoErrorsPlugin;
 | |
| NoErrorsPlugin.prototype.apply = function(compiler) {
 | |
| 	compiler.plugin("should-emit", function(compilation) {
 | |
| 		if(!deprecationReported) {
 | |
| 			compilation.warnings.push("webpack: Using NoErrorsPlugin is deprecated.\n" +
 | |
| 				"Use NoEmitOnErrorsPlugin instead.\n");
 | |
| 			deprecationReported = true;
 | |
| 		}
 | |
| 		if(compilation.errors.length > 0)
 | |
| 			return false;
 | |
| 	});
 | |
| 	compiler.plugin("compilation", function(compilation) {
 | |
| 		compilation.plugin("should-record", function() {
 | |
| 			if(compilation.errors.length > 0)
 | |
| 				return false;
 | |
| 		});
 | |
| 	});
 | |
| };
 |