the line to change would be in write_shared.rs:154:
cx.shared.fs.write(filename, f.minified())
this should use f.bytes instead of f.minified() if the --no-minify flag is specified.
this flag would mostly be useful for debugging rustdoc itself, allowing js and css errors to accurately report line numbers.
the line to change would be in
write_shared.rs:154:cx.shared.fs.write(filename, f.minified())this should use
f.bytesinstead off.minified()if the--no-minifyflag is specified.this flag would mostly be useful for debugging rustdoc itself, allowing js and css errors to accurately report line numbers.