1
0
mirror of https://github.com/go-task/task.git synced 2024-12-04 10:24:45 +02:00

Add Changelog and Docs for --parallel

This commit is contained in:
Andrey Nering 2019-11-15 23:31:01 -03:00
parent 10a6c4dc7a
commit fea23ed6d4
2 changed files with 9 additions and 0 deletions

View File

@ -1,5 +1,11 @@
# Changelog
## Unreleased
- Add `--parallel` flag (alias `-p`) to run tasks given by the command line in
parallel
([#266](https://github.com/go-task/task/pull/266)).
## v2.7.1 - 2019-11-10
- Fix error being raised when `exit 0` was called

View File

@ -193,6 +193,9 @@ tasks:
If there is more than one dependency, they always run in parallel for better
performance.
> You can also make the tasks given by the command line run in parallel by
> using the `--parallel` flag (alias `-p`). Example: `task --parallel js css`.
If you want to pass information to dependencies, you can do that the same
manner as you would to [call another task](#calling-another-task):