You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am building a deep integration with ESBuild to my Go application. Due to how it works, some of the files are embedded, and some are on the filesystem, and all access to files happen through the fs.FS interface.
In essence, I would like to be able to pass an fs.FS interface to all of the different methods and functions and for ESBuild to use it for all file accesses. Another separate fs.FS should be available to be passed for the output (as the embed.FS is read-only).
It should be a relatively straightforward change, but as I don't know the codebase, I cannot be sure.
The text was updated successfully, but these errors were encountered:
I am building a deep integration with ESBuild to my Go application. Due to how it works, some of the files are embedded, and some are on the filesystem, and all access to files happen through the
fs.FS
interface.In essence, I would like to be able to pass an
fs.FS
interface to all of the different methods and functions and for ESBuild to use it for all file accesses. Another separatefs.FS
should be available to be passed for the output (as theembed.FS
is read-only).It should be a relatively straightforward change, but as I don't know the codebase, I cannot be sure.
The text was updated successfully, but these errors were encountered: