diff --git a/README.md b/README.md index 9f78723e..fde5858a 100644 --- a/README.md +++ b/README.md @@ -73,6 +73,19 @@ css: - npm run buildcss ``` +Each task can only be run once. If it is included from another dependend task causing +a cyclomatic dependency, execution will be stopped. + +```yml +task1: + deps: [task2] + +task2: + deps: [task1] +``` + +Will stop at the moment the dependencies of `task2` are executed. + ### Prevent task from running when not necessary If a task generates something, you can inform Task the source and generated