File size: 254 Bytes
b80fc11
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
import micromatch from "micromatch";

export const shouldDeploy = (
	watchPaths: string[] | null,
	modifiedFiles: string[],
): boolean => {
	if (!watchPaths || watchPaths?.length === 0) return true;
	return micromatch.some(modifiedFiles, watchPaths);
};