mirror of https://github.com/webpack/webpack.git
				
				
				
			
		
			
				
	
	
		
			19 lines
		
	
	
		
			480 B
		
	
	
	
		
			JavaScript
		
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			480 B
		
	
	
	
		
			JavaScript
		
	
	
	
"use strict";
 | 
						|
 | 
						|
const fs = require("fs");
 | 
						|
const path = require("path");
 | 
						|
 | 
						|
/**
 | 
						|
 * @param {{output: {path: string}}} options options
 | 
						|
 * @param {RegExp} regexp regexp
 | 
						|
 * @param {string=} subpath path in output directory
 | 
						|
 * @returns {string[]} files
 | 
						|
 */
 | 
						|
module.exports = function findOutputFiles(options, regexp, subpath) {
 | 
						|
	const files = fs.readdirSync(
 | 
						|
		subpath ? path.join(options.output.path, subpath) : options.output.path
 | 
						|
	);
 | 
						|
 | 
						|
	return files.filter(file => regexp.test(file));
 | 
						|
};
 |