This commit is contained in:
dylan 2023-05-13 18:17:34 -07:00
parent 8303cef501
commit 3bc7212d86
3 changed files with 2 additions and 1 deletions

Binary file not shown.

Binary file not shown.

View File

@ -6,6 +6,7 @@
"run": "deno run -A --unstable index.ts",
"build": "deno compile --output build/faux -A --unstable index.ts",
"build_linux": "deno compile --output build/faux_linux --target x86_64-unknown-linux-gnu -A --unstable index.ts",
"build_windows": "deno compile --output build/faux_windows --target x86_64-pc-windows-msvc -A --unstable index.ts"
"build_windows": "deno compile --output build/faux_windows --target x86_64-pc-windows-msvc -A --unstable index.ts",
"build_all": "deno task build_linux & deno task build_windows"
}
}