Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions bun.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@
"dev": "bun run src/bin.ts",
"build": "bun run script/build.ts --single",
"build:all": "bun run script/build.ts",
"hole-punch": "bun run script/hole-punch.ts",
"bundle": "bun run script/bundle.ts",
"typecheck": "tsc --noEmit",
"lint": "bunx ultracite check",
Expand All @@ -38,6 +37,7 @@
"@types/node": "^22",
"@types/qrcode-terminal": "^0.12.2",
"@types/semver": "^7.7.1",
"binpunch": "^1.0.0",
"chalk": "^5.6.2",
"esbuild": "^0.25.0",
"fast-check": "^4.5.3",
Expand Down
2 changes: 1 addition & 1 deletion script/build.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@

import { promisify } from "node:util";
import { gzip } from "node:zlib";
import { processBinary } from "binpunch";
import { $ } from "bun";
import pkg from "../package.json";
import { processBinary } from "./hole-punch.js";

const gzipAsync = promisify(gzip);

Expand Down
Loading
Loading