From: Guillaume Gomez Date: Wed, 27 Nov 2019 23:26:59 +0000 (+0100) Subject: minify theme.js as well X-Git-Url: https://git.lizzy.rs/?a=commitdiff_plain;ds=sidebyside;h=852079fbf23e478b065895c0db49db10f9e47929;p=rust.git minify theme.js as well --- diff --git a/src/librustdoc/html/render.rs b/src/librustdoc/html/render.rs index 2d7fef56731..49471a8e938 100644 --- a/src/librustdoc/html/render.rs +++ b/src/librustdoc/html/render.rs @@ -644,10 +644,9 @@ fn write_shared( themes.appendChild(but); }});"#, as_json(&themes)); - write(cx.dst.join(&format!("theme{}.js", cx.shared.resource_suffix)), - theme_js.as_bytes() - )?; - + write_minify(&cx.shared.fs, cx.path("theme.js"), + &theme_js, + options.enable_minification)?; write_minify(&cx.shared.fs, cx.path("main.js"), static_files::MAIN_JS, options.enable_minification)?;