Skip to content

Commit d706ff7

Browse files
committed
chore: optimizing for reduced executable size
1 parent 19cd647 commit d706ff7

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

deno.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,9 @@
2424
"singleQuote": false
2525
},
2626
"tasks": {
27-
"build:linux": "deno compile -A --target x86_64-unknown-linux-gnu --output devstream main.ts",
28-
"build:macos": "deno compile -A --target x86_64-apple-darwin --output devstream.darwin main.ts",
29-
"build:windows": "deno compile -A --target x86_64-pc-windows-msvc --output devstream.exe main.ts",
27+
"build:linux": "deno compile --no-npm --no-check -A --target=x86_64-unknown-linux-gnu --output=devstream main.ts",
28+
"build:macos": "deno compile --no-npm --no-check -A --target=x86_64-apple-darwin --output=devstream.darwin main.ts",
29+
"build:windows": "deno compile --no-npm --no-check -A --target=x86_64-pc-windows-msvc --output=devstream.exe main.ts",
3030
"test": "deno test --allow-all",
3131
"lint": "deno lint --allow-all",
3232
"format": "deno fmt",

main.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
#!/usr/bin/env -S deno run --watch --allow-read --allow-write --allow-net --allow-env --allow-run
21
import * as path from "@std/path";
32
import { parseArgs } from "@std/cli/parse-args";
43
import { colors } from "@cliffy/ansi/colors";

0 commit comments

Comments
 (0)