Bauke/dotfiles
Bauke
/
dotfiles
Archived
1
Fork 0
This repository has been archived on 2025-09-03. You can view files and clone it, but cannot push or open issues or pull requests.
dotfiles/.bauke/Deno.md

8 lines
449 B
Markdown

# Deno Scripts
## Why `bin/` + `scripts/`
Deno has [some issues](https://github.com/denoland/deno/issues/17195) with running files without a file extension (like what you'd want in `bin/`). So instead all the scripts are located in `scripts/` with proper file extensions and the `bin/` files call those scripts using `deno run`.
Though even if Deno didn't have these issues, having massive shebangs would also not be nice, so this setup is fine.