deno/cli
Nathan Whitaker 2dc37f411e
feat(task): Task description in the form of comments (#23101)
Closes #22786.

TLDR;
```jsonc
{
  "tasks": {
    // Some comment
    //
    // describing what the task does
    "dev": "deno run -A --watch main.ts"
  }
}
```
```bash
deno task
```
![Screenshot 2024-03-27 at 1 43
49 PM](7a14da8c-8e63-45ba-9bfb-590d250b56a9)
2024-03-27 14:14:27 -07:00
..
args feat(task): Task description in the form of comments (#23101) 2024-03-27 14:14:27 -07:00
bench
cache feat(node): load ES modules defined as CJS (#22945) 2024-03-21 11:35:51 -07:00
js fix: don't panic in test and bench if ops not available (#23055) 2024-03-24 16:16:45 -07:00
lsp feat(task): Task description in the form of comments (#23101) 2024-03-27 14:14:27 -07:00
napi
npm
ops refactor(bench): align ops to testing ops (#23038) 2024-03-24 06:22:37 +01:00
schemas
standalone perf(cli): use args_os (#23039) 2024-03-22 14:03:56 -07:00
tools feat(task): Task description in the form of comments (#23101) 2024-03-27 14:14:27 -07:00
tsc fix(check): do not suggest running with --unstable (#23092) 2024-03-27 11:58:36 -04:00
util fix: less aggressive vendor folder ignoring (#23100) 2024-03-27 14:25:39 -04:00
auth_tokens.rs
build.rs feat: TypeScript 5.4 (#23086) 2024-03-26 18:52:57 -04:00
Cargo.toml feat(task): Task description in the form of comments (#23101) 2024-03-27 14:14:27 -07:00
cdp.rs
deno.ico
emit.rs
entitlements.plist
errors.rs
factory.rs
file_fetcher.rs
graph_util.rs
http_util.rs
integration_tests_runner.rs
js.rs
jsr.rs
main.rs feat(init): use jsr specifier for @std/assert (#23073) 2024-03-27 18:51:52 +01:00
mainrt.rs perf(cli): use args_os (#23039) 2024-03-22 14:03:56 -07:00
module_loader.rs chore: upgrade deno_core to 0.272.0 (#23022) 2024-03-21 13:57:32 -07:00
node.rs feat(node): load ES modules defined as CJS (#22945) 2024-03-21 11:35:51 -07:00
README.md
resolver.rs feat(node): load ES modules defined as CJS (#22945) 2024-03-21 11:35:51 -07:00
version.rs
worker.rs

Deno CLI Crate

crates

This provides the actual deno executable and the user-facing APIs.

The deno crate uses the deno_core to provide the executable.