-
-
Notifications
You must be signed in to change notification settings - Fork 133
Open
Description
As a result, callers passing a custom fs
implementation (to fast-glob
) get incorrect behavior due to the wrong file system APIs being invoked by globby
.
Examples:
Line 2 in b0d7330
import fs from 'node:fs'; Line 64 in b0d7330
stat = fs.statSync(cwd); Lines 2 to 3 in b0d7330
import fs from 'node:fs'; import fsPromises from 'node:fs/promises'; Line 82 in b0d7330
content: await fsPromises.readFile(filePath, 'utf8'), Line 102 in b0d7330
content: fs.readFileSync(filePath, 'utf8'),
Metadata
Metadata
Assignees
Labels
No labels