mirror of
https://github.com/go-task/task.git
synced 2025-03-21 21:27:07 +02:00
Fix some typos in the documentation
This commit is contained in:
parent
7dcb3af944
commit
e6b543c15e
@ -9,8 +9,8 @@ The Taskfile version follows the Task version. E.g. the change to Taskfile
|
|||||||
version `2` means that Task `v2.0.0` should be release to support it.
|
version `2` means that Task `v2.0.0` should be release to support it.
|
||||||
|
|
||||||
The `version:` key on Taskfile accepts a semver string, so either `2`, `2.0` or
|
The `version:` key on Taskfile accepts a semver string, so either `2`, `2.0` or
|
||||||
`2.0.0` is accepted. You you choose to use `2.0` Task will not enable future
|
`2.0.0` is accepted. If you choose to use `2.0` Task will not enable future
|
||||||
`2.1` features, but if you choose to use `2`, than any `2.x.x` features will be
|
`2.1` features, but if you choose to use `2`, then any `2.x.x` features will be
|
||||||
available, but not `3.0.0+`.
|
available, but not `3.0.0+`.
|
||||||
|
|
||||||
## Version 1
|
## Version 1
|
||||||
@ -33,7 +33,7 @@ The variable priority order was also different:
|
|||||||
|
|
||||||
## Version 2.0
|
## Version 2.0
|
||||||
|
|
||||||
At version 2, we introduced the `version:` key, to allow us to envolve Task
|
At version 2, we introduced the `version:` key, to allow us to evolve Task
|
||||||
with new features without breaking existing Taskfiles. The new syntax is as
|
with new features without breaking existing Taskfiles. The new syntax is as
|
||||||
follows:
|
follows:
|
||||||
|
|
||||||
@ -108,7 +108,7 @@ tasks:
|
|||||||
prefix: server
|
prefix: server
|
||||||
```
|
```
|
||||||
|
|
||||||
From this version it's not also possible to ignore errors of a command or task
|
From this version it's also possible to ignore errors of a command or task
|
||||||
(check documentation [here][ignore_errors]):
|
(check documentation [here][ignore_errors]):
|
||||||
|
|
||||||
```yaml
|
```yaml
|
||||||
|
@ -608,7 +608,7 @@ would print the following output:
|
|||||||
|
|
||||||
## Display summary of task
|
## Display summary of task
|
||||||
|
|
||||||
Running `task --summary task-name` will show a summary of a task
|
Running `task --summary task-name` will show a summary of a task.
|
||||||
The following Taskfile:
|
The following Taskfile:
|
||||||
|
|
||||||
```yaml
|
```yaml
|
||||||
@ -620,7 +620,7 @@ tasks:
|
|||||||
summary: |
|
summary: |
|
||||||
Release your project to github
|
Release your project to github
|
||||||
|
|
||||||
It will build your project before starting the release it.
|
It will build your project before starting the release.
|
||||||
Please make sure that you have set GITHUB_TOKEN before starting.
|
Please make sure that you have set GITHUB_TOKEN before starting.
|
||||||
cmds:
|
cmds:
|
||||||
- your-release-tool
|
- your-release-tool
|
||||||
@ -637,7 +637,7 @@ task: release
|
|||||||
|
|
||||||
Release your project to github
|
Release your project to github
|
||||||
|
|
||||||
It will build your project before starting the release it.
|
It will build your project before starting the release.
|
||||||
Please make sure that you have set GITHUB_TOKEN before starting.
|
Please make sure that you have set GITHUB_TOKEN before starting.
|
||||||
|
|
||||||
dependencies:
|
dependencies:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user