format
This commit is contained in:
		
							parent
							
								
									d7842e0ce7
								
							
						
					
					
						commit
						558a509164
					
				
					 2 changed files with 9 additions and 5 deletions
				
			
		| 
						 | 
					@ -1,12 +1,16 @@
 | 
				
			||||||
import path from "path";
 | 
					import path from "path"
 | 
				
			||||||
import { FilePath } from "./path";
 | 
					import { FilePath } from "./path"
 | 
				
			||||||
import { globby } from "globby";
 | 
					import { globby } from "globby"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
export function toPosixPath(fp: string): string {
 | 
					export function toPosixPath(fp: string): string {
 | 
				
			||||||
  return fp.split(path.sep).join("/")
 | 
					  return fp.split(path.sep).join("/")
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
export async function glob(pattern: string, cwd: string, ignorePatterns: string[]): Promise<FilePath[]> {
 | 
					export async function glob(
 | 
				
			||||||
 | 
					  pattern: string,
 | 
				
			||||||
 | 
					  cwd: string,
 | 
				
			||||||
 | 
					  ignorePatterns: string[],
 | 
				
			||||||
 | 
					): Promise<FilePath[]> {
 | 
				
			||||||
  const fps = (
 | 
					  const fps = (
 | 
				
			||||||
    await globby(pattern, {
 | 
					    await globby(pattern, {
 | 
				
			||||||
      cwd,
 | 
					      cwd,
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue