Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add zip file support #1985

Merged
merged 4 commits into from
Aug 10, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 11 additions & 2 deletions internal/fs/fs_real.go
Original file line number Diff line number Diff line change
Expand Up @@ -110,12 +110,21 @@ func RealFS(options RealFSOptions) (FS, error) {
watchData = make(map[string]privateWatchData)
}

return &realFS{
var result FS = &realFS{
entries: make(map[string]entriesOrErr),
fp: fp,
watchData: watchData,
doNotCacheEntries: options.DoNotCache,
}, nil
}

// Add a wrapper that lets us traverse into ".zip" files. This is what yarn
// uses as a package format when in yarn is in its "PnP" mode.
result = &zipFS{
inner: result,
zipFiles: make(map[string]*zipFile),
}

return result, nil
}

func (fs *realFS) ReadDirectory(dir string) (entries DirEntries, canonicalError error, originalError error) {
Expand Down
Loading