This commit is contained in:
Alex Ross 2019-06-27 15:47:50 +02:00 коммит произвёл GitHub
Родитель f309783063
Коммит adc565da58
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -39,7 +39,7 @@ The configuration is persisted globally across all workspaces.
### Sequential dependency execution
The `"dependsOn"` task attribute still defaults to running all dependencies in parallel, but now you can specify `"dependsOrder": "sequence"` and have your task dependencies executed in the order they are listed in `"dependsOn"`. Any background/watch tasks used in `"dependsOn"` but have a problem matcher that tracks when they are “done”. The following task runs task Two, task Three, and then task One.
The `"dependsOn"` task attribute still defaults to running all dependencies in parallel, but now you can specify `"dependsOrder": "sequence"` and have your task dependencies executed in the order they are listed in `"dependsOn"`. Any background/watch tasks used in `"dependsOn"` must have a problem matcher that tracks when they are “done”. The following task runs task Two, task Three, and then task One.
```
{