Skip to content

Commit 8e50a3a

Browse files
committed
chore: support diff and gzip
1 parent 570cdf9 commit 8e50a3a

File tree

6 files changed

+83
-5
lines changed

6 files changed

+83
-5
lines changed

.vscode/extensions.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
{
22
"recommendations": [
3-
"kermanx.speedscope-vscode"
3+
"kermanx.speedscope-vscode",
4+
"kermanx.auto-diff-opener",
45
]
56
}

Cargo.lock

+35
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+1
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ clap = "4.5.20"
2121
dashmap = "6.0.1"
2222
flame = "0.2.2"
2323
flamescope = "0.1.3"
24+
flate2 = "1.1.0"
2425
line-index = "0.1.2"
2526
oxc = "0.46.0"
2627
oxc_ecmascript = "0.46.0"

crates/tree_shaker/Cargo.toml

+1
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ clap = { workspace = true, features = ["derive"] }
2929
dashmap = { workspace = true }
3030
flame = { workspace = true, optional = true }
3131
flamescope = { workspace = true, optional = true }
32+
flate2 = { workspace = true }
3233
oxc = { workspace = true, features = ["codegen", "semantic", "minifier"] }
3334
oxc_ecmascript = { workspace = true }
3435
oxc_index = { workspace = true }

crates/tree_shaker/src/main.rs

+44-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
use clap::Parser;
2+
use flate2::{write::GzEncoder, Compression};
23
use oxc::{
34
codegen::CodegenOptions,
45
minifier::{MangleOptions, MinifierOptions},
@@ -194,15 +195,24 @@ fn main() {
194195
}
195196

196197
let out_dir = PathBuf::from(args.output.unwrap_or(String::from("output")));
198+
let _ = std::fs::remove_dir_all(&out_dir);
197199
if let Err(e) = std::fs::create_dir_all(&out_dir) {
198200
eprintln!("Couldn't create directory {}: {}", out_dir.display(), e);
199201
std::process::exit(1);
200202
}
201203

202204
let mut input_total = 0;
203205
let mut output_total = 0;
206+
let mut input_g_total = 0;
207+
let mut output_g_total = 0;
204208
for (path, codegen_return) in shaken.codegen_return {
205209
let out_path = out_dir.join(&path);
210+
let orig_ext = if let Some(ext) = out_path.extension() {
211+
format!("orig.{}", ext.to_string_lossy())
212+
} else {
213+
"orig".to_string()
214+
};
215+
let copy_path = out_path.with_extension(orig_ext);
206216
println!("{}\t--> {}", path, out_path.display());
207217

208218
let mut output_file = match File::create(&out_path) {
@@ -227,25 +237,56 @@ fn main() {
227237
);
228238
let non_shaken_code = non_shaken.codegen_return[SingleFileFs::ENTRY_PATH].code.clone();
229239

240+
let mut copy_file = match File::create(&copy_path) {
241+
Err(why) => {
242+
eprintln!("Couldn't create {}: {}", copy_path.display(), why);
243+
std::process::exit(1);
244+
}
245+
Ok(file) => file,
246+
};
247+
copy_file.write_all(non_shaken_code.as_bytes()).unwrap();
248+
230249
input_total += non_shaken_code.len();
231250
output_total += codegen_return.code.len();
232251
println!(
233-
" Original: {}B,\t{}: {}B,\t{}: {}B\tRate: {:.2}%",
252+
" [RAW] Original: {}B,\t{}: {}B,\t{}: {}B\tRate: {:.2}%",
234253
source.len(),
235254
if args.minify { "Shaken&Minified" } else { "Shaken" },
236255
codegen_return.code.len(),
237256
if args.minify { "Minified" } else { "Copied" },
238257
non_shaken_code.len(),
239258
(codegen_return.code.len() as f64 / non_shaken_code.len() as f64) * 100.0
240259
);
260+
261+
let source_g_size = get_gzipped_size(&source);
262+
let input_g_size = get_gzipped_size(&non_shaken_code);
263+
let output_g_size = get_gzipped_size(&codegen_return.code);
264+
input_g_total += input_g_size;
265+
output_g_total += output_g_size;
266+
println!(
267+
" [GZIP] Original: {}B,\t{}: {}B,\t{}: {}B\tRate: {:.2}%",
268+
source_g_size,
269+
if args.minify { "Shaken&Minified" } else { "Shaken" },
270+
output_g_size,
271+
if args.minify { "Minified" } else { "Copied" },
272+
input_g_size,
273+
(output_g_size as f64 / input_g_size as f64) * 100.0,
274+
);
241275
}
242276

243277
let elapsed = start_time.elapsed();
244278
println!("-------------------");
245279
println!(
246-
"Completed in {:?}, Rate: {:.2}%",
280+
"Completed in {:?}, Rate: {:.2}%, Gzipped Rate: {:.2}%",
247281
elapsed,
248-
(output_total as f64 / input_total as f64) * 100.0
282+
(output_total as f64 / input_total as f64) * 100.0,
283+
(output_g_total as f64 / input_g_total as f64) * 100.0,
249284
);
250285
}
251286
}
287+
288+
fn get_gzipped_size(content: &str) -> usize {
289+
let mut encoder = GzEncoder::new(Vec::new(), Compression::best());
290+
encoder.write_all(content.as_bytes()).unwrap();
291+
encoder.finish().unwrap().len()
292+
}

tasks/e2e/plugin.ts

-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@ export default function (options: {
2424
// treeshake: false
2525
// },
2626
outDir: './dist',
27-
minify: false,
2827
emptyOutDir: false,
2928
...config?.build,
3029
lib: {

0 commit comments

Comments
 (0)