Skip to content

v2.2.0

Choose a tag to compare

@github-actions github-actions released this 19 Apr 05:53
· 21 commits to main since this release

npm i recursive-readdir-files@2.2.0

Documentation v2.2.0: https://raw.githack.com/jaywcjlove/recursive-readdir-files/980f080/index.html
Comparing Changes: v2.1.0...v2.2.0

- declare type Callback = (filepath: string, stat: IFileDirStat, childs: IFileDirStat[]) => void;
+ declare type Callback = (filepath: string, stat: IFileDirStat) => void;
export default function recursiveReaddirFiles(rootPath: string, options?: RecursiveReaddirFilesOptions, callback?: Callback): Promise<IFileDirStat[]>;