mirror of
https://github.com/denoland/deno.git
synced 2024-12-11 10:07:54 -05:00
f0b245c8ee
This commit adds workspace support to "deno taks". Two new flags were added: - "--recursive" - allows to run a specified task in workspace members, eg. "deno task --recursive dev" - "--filter" - allows to run a specified task only in specific workspace members, eg. "deno task --recursive --filter 'client/*' dev" "--filter" flag implies "--recursive" flag. Closes https://github.com/denoland/deno/issues/24991 --------- Signed-off-by: Bartek Iwańczuk <biwanczuk@gmail.com> Signed-off-by: David Sherret <dsherret@users.noreply.github.com> Co-authored-by: Bartek Iwańczuk <biwanczuk@gmail.com> Co-authored-by: Nathan Whitaker <17734409+nathanwhit@users.noreply.github.com> Co-authored-by: David Sherret <dsherret@users.noreply.github.com> Co-authored-by: David Sherret <dsherret@gmail.com>
7 lines
166 B
Text
7 lines
166 B
Text
{
|
|
"task": {
|
|
// should not execute this one because it's in a deno.json
|
|
// and not in the package.json
|
|
"pretest": "echo 'should not be in output'"
|
|
}
|
|
}
|