15 lines
		
	
	
		
			291 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			291 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| const {
 | |
|   applyExtends,
 | |
|   cjsPlatformShim,
 | |
|   Parser,
 | |
|   processArgv,
 | |
| } = require('../build/index.cjs');
 | |
| 
 | |
| module.exports = {
 | |
|   applyExtends: (config, cwd, mergeExtends) => {
 | |
|     return applyExtends(config, cwd, mergeExtends, cjsPlatformShim);
 | |
|   },
 | |
|   hideBin: processArgv.hideBin,
 | |
|   Parser,
 | |
| };
 |