From f727058a3a38ac4021f9e01d3772a320f4d3e4a3 Mon Sep 17 00:00:00 2001 From: fiatjaf Date: Fri, 22 Dec 2023 11:48:07 -0300 Subject: [PATCH] rename benchmark.ts -> benchmarks.ts --- benchmark.ts => benchmarks.ts | 0 justfile | 4 ++-- 2 files changed, 2 insertions(+), 2 deletions(-) rename benchmark.ts => benchmarks.ts (100%) diff --git a/benchmark.ts b/benchmarks.ts similarity index 100% rename from benchmark.ts rename to benchmarks.ts diff --git a/justfile b/justfile index ec6c851d..5323169f 100644 --- a/justfile +++ b/justfile @@ -25,8 +25,8 @@ lint: prettier --check *.ts benchmark: - bun build --target=node --outfile=bench.js benchmark.ts + bun build --target=node --outfile=bench.js benchmarks.ts timeout 60s deno run --allow-read bench.js || true timeout 60s node bench.js || true - timeout 60s bun run benchmark.ts || true + timeout 60s bun run benchmarks.ts || true rm bench.js