Merge pull request #2257 from bmad-code-org/issue-fixes

fix(installer): add missing fs-native exports
This commit is contained in:
Brian 2026-04-13 18:06:56 -05:00 committed by GitHub
commit 262fa882ef
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 5 additions and 0 deletions

View File

@ -82,7 +82,9 @@ module.exports = {
stat: fsp.stat, stat: fsp.stat,
readdir: fsp.readdir, readdir: fsp.readdir,
access: fsp.access, access: fsp.access,
realpath: fsp.realpath,
rename: fsp.rename, rename: fsp.rename,
rmdir: fsp.rmdir,
unlink: fsp.unlink, unlink: fsp.unlink,
chmod: fsp.chmod, chmod: fsp.chmod,
mkdir: fsp.mkdir, mkdir: fsp.mkdir,
@ -103,6 +105,9 @@ module.exports = {
existsSync: fs.existsSync.bind(fs), existsSync: fs.existsSync.bind(fs),
readFileSync: fs.readFileSync.bind(fs), readFileSync: fs.readFileSync.bind(fs),
writeFileSync: fs.writeFileSync.bind(fs), writeFileSync: fs.writeFileSync.bind(fs),
statSync: fs.statSync.bind(fs),
accessSync: fs.accessSync.bind(fs),
readdirSync: fs.readdirSync.bind(fs),
createReadStream: fs.createReadStream.bind(fs), createReadStream: fs.createReadStream.bind(fs),
pathExistsSync: fs.existsSync.bind(fs), pathExistsSync: fs.existsSync.bind(fs),