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
Currently, extensions like autosummary write files directly to the source directory in the builder-inited step, in order to then allow them to be processed as additional documents.
In general it is inconvenient to write to the source directory:
Source directory might be read-only
Issues with multiple builds happening concurrently from the same directory
Users might accidentally check these generated files into source control.
Need care to avoid accidentally clobbering files that should not be clobbered while still being able to overwrite an existing generated file.
It would be better if extensions could generate "virtual" source documents, that are processed like any other document in the source directory but are just stored in memory and never need to be written to the filesystem.
The text was updated successfully, but these errors were encountered:
Currently, extensions like autosummary write files directly to the source directory in the
builder-inited
step, in order to then allow them to be processed as additional documents.In general it is inconvenient to write to the source directory:
It would be better if extensions could generate "virtual" source documents, that are processed like any other document in the source directory but are just stored in memory and never need to be written to the filesystem.
The text was updated successfully, but these errors were encountered: