From bf64259af39a1821b0562fa232b0f93929b91775 Mon Sep 17 00:00:00 2001 From: Andrey Nering Date: Sat, 23 May 2020 14:13:13 -0300 Subject: [PATCH] taskfile.dev: Add note about parallel deps Reference: #331 --- docs/usage.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/docs/usage.md b/docs/usage.md index 8743c295..ae612ee9 100644 --- a/docs/usage.md +++ b/docs/usage.md @@ -152,6 +152,10 @@ If the directory doesn't exist, `task` creates it. ## Task dependencies +> Dependencies run in parallel, so dependencies of a task shouldn't depend one +> another. If you want to force tasks to run serially take a look at the +> [Calling Another Task](#calling-another-task) section below. + You may have tasks that depend on others. Just pointing them on `deps` will make them run automatically before running the parent task: