fix(deno): remove deprecated aliases and add modern ones (#13796)

- Remove  alias for  (deprecated in Deno 1.x, removed
  in Deno 2.0)
- Remove  alias for  (the --unstable flag
  has been deprecated in favor of granular --unstable-* flags)
- Add  alias for  (type-check without running)
- Add  alias for  (HTTP server introduced in Deno 1.37)
- Update README to reflect changes
This commit is contained in:
ANDI FAUZAN HEDIANTORO
2026-06-13 00:39:09 +07:00
committed by GitHub
parent c954bbb168
commit 5181447da8
2 changed files with 16 additions and 16 deletions

View File

@@ -4,17 +4,17 @@ This plugin sets up completion and aliases for [Deno](https://deno.land).
## Aliases
| Alias | Full command |
| ----- | ------------------- |
| db | deno bundle |
| dc | deno compile |
| dca | deno cache |
| dfmt | deno fmt |
| dh | deno help |
| dli | deno lint |
| drn | deno run |
| drA | deno run -A |
| drw | deno run --watch |
| dru | deno run --unstable |
| dts | deno test |
| dup | deno upgrade |
| Alias | Full command |
| ----- | ---------------- |
| dc | deno compile |
| dca | deno cache |
| dck | deno check |
| dfmt | deno fmt |
| dh | deno help |
| dli | deno lint |
| drn | deno run |
| drA | deno run -A |
| drw | deno run --watch |
| dsv | deno serve |
| dts | deno test |
| dup | deno upgrade |