mirror of
https://github.com/denoland/deno.git
synced 2024-11-21 15:04:11 -05:00
661aa22c03
This commit adds support for "dependencies" in `deno task` subcommand: ```jsonc { "tasks": { "build": "deno run -RW build.ts", "generate": "deno run -RW generate.ts", "serve": { "command": "deno run -RN server.ts", "dependencies": ["build", "generate"] } } } ``` Executing `deno task serve` will first execute `build` and `generate` tasks (in parallel) and once both complete the `serve` task will be executed. Number of tasks run in parallel is equal to the no of cores on the machine, and respects `DENO_JOBS` env var if one is specified. Part of https://github.com/denoland/deno/issues/26462 --------- Co-authored-by: Bartek Iwańczuk <biwanczuk@gmail.com> Co-authored-by: Marvin Hagemeister <marvin@deno.com>
12 lines
269 B
Text
12 lines
269 B
Text
Task build1 deno run ../build1.js
|
|
Task build2 deno run ../build2.js
|
|
[UNORDERED_START]
|
|
Starting build1
|
|
build1 performing more work...
|
|
build1 finished
|
|
Starting build2
|
|
build2 performing more work...
|
|
build2 finished
|
|
[UNORDERED_END]
|
|
Task run deno run ../run.js
|
|
run finished
|