mirror of https://github.com/webpack/webpack.git
				
				
				
			
		
			
				
	
	
		
			27 lines
		
	
	
		
			642 B
		
	
	
	
		
			JavaScript
		
	
	
	
			
		
		
	
	
			27 lines
		
	
	
		
			642 B
		
	
	
	
		
			JavaScript
		
	
	
	
| /*
 | |
| 	MIT License http://www.opensource.org/licenses/mit-license.php
 | |
| 	Author Tobias Koppers @sokra
 | |
| */
 | |
| 
 | |
| "use strict";
 | |
| 
 | |
| const ExternalsPlugin = require("../ExternalsPlugin");
 | |
| 
 | |
| /** @typedef {import("../Compiler")} Compiler */
 | |
| 
 | |
| const builtins =
 | |
| 	// eslint-disable-next-line node/no-unsupported-features/node-builtins,node/no-deprecated-api
 | |
| 	require("module").builtinModules || Object.keys(process.binding("natives"));
 | |
| 
 | |
| class NodeTargetPlugin {
 | |
| 	/**
 | |
| 	 * @param {Compiler} compiler the compiler instance
 | |
| 	 * @returns {void}
 | |
| 	 */
 | |
| 	apply(compiler) {
 | |
| 		new ExternalsPlugin("commonjs", builtins).apply(compiler);
 | |
| 	}
 | |
| }
 | |
| 
 | |
| module.exports = NodeTargetPlugin;
 |