mirror of
https://github.com/oven-sh/bun
synced 2026-02-02 15:08:46 +00:00
* chore(benchmark): fix deno console.log benchmark * only show benchmark results Co-authored-by: evanwashere <github@evan.lol>
12 lines
322 B
JSON
12 lines
322 B
JSON
{
|
|
"name": "bench",
|
|
"scripts": {
|
|
"deps": "exit 0",
|
|
"build": "exit 0",
|
|
"bench:bun": "$BUN bun.js | grep iter",
|
|
"bench:node": "$NODE node.mjs | grep iter",
|
|
"bench:deno": "$DENO run -A --unstable deno.mjs | grep iter",
|
|
"bench": "bun run bench:bun && bun run bench:node && bun run bench:deno"
|
|
}
|
|
}
|