mirror of https://github.com/webpack/webpack.git
				
				
				
			
		
			
				
	
	
		
			19 lines
		
	
	
		
			413 B
		
	
	
	
		
			JavaScript
		
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			413 B
		
	
	
	
		
			JavaScript
		
	
	
	
/*
 | 
						|
	MIT License http://www.opensource.org/licenses/mit-license.php
 | 
						|
	Author Tobias Koppers @sokra
 | 
						|
*/
 | 
						|
"use strict";
 | 
						|
 | 
						|
const ExternalsPlugin = require("../ExternalsPlugin");
 | 
						|
 | 
						|
const builtins =
 | 
						|
	require("module").builtinModules || Object.keys(process.binding("natives"));
 | 
						|
 | 
						|
class NodeTargetPlugin {
 | 
						|
	apply(compiler) {
 | 
						|
		new ExternalsPlugin("commonjs", builtins).apply(compiler);
 | 
						|
	}
 | 
						|
}
 | 
						|
 | 
						|
module.exports = NodeTargetPlugin;
 |