1
0
mirror of https://github.com/go-task/task.git synced 2025-02-03 13:22:11 +02:00
This commit is contained in:
Andrey Nering 2022-10-14 21:11:48 -03:00
parent 852a176e1f
commit 33b6927b79
4 changed files with 22 additions and 4 deletions

View File

@ -1,6 +1,6 @@
# Changelog
## Unreleased
## v3.17.0
- Add a "Did you mean ...?" suggestion when a task does not exits another one
with a similar name is found

View File

@ -5,6 +5,24 @@ sidebar_position: 6
# Changelog
## v3.17.0
- Add a "Did you mean ...?" suggestion when a task does not exits another one
with a similar name is found
([#867](https://github.com/go-task/task/issues/867), [#880](https://github.com/go-task/task/pull/880)).
- Now YAML parse errors will print which Taskfile failed to parse
([#885](https://github.com/go-task/task/issues/885), [#887](https://github.com/go-task/task/pull/887)).
- Add ability to set `aliases` for tasks and namespaces ([#268](https://github.com/go-task/task/pull/268), [#340](https://github.com/go-task/task/pull/340), [#879](https://github.com/go-task/task/pull/879)).
- Improvements to Fish shell completion
([#897](https://github.com/go-task/task/pull/897)).
- Added ability to set a different watch interval by setting
`interval: '500ms'` or using the `--interval=500ms` flag
([#813](https://github.com/go-task/task/issues/813), [#865](https://github.com/go-task/task/pull/865)).
- Add colored output to `--list`, `--list-all` and `--summary` flags ([#845](https://github.com/go-task/task/pull/845), [#874](https://github.com/go-task/task/pull/874)).
- Fix unexpected behavior where `label:` was being shown instead of the task
name on `--list`
([#603](https://github.com/go-task/task/issues/603), [#877](https://github.com/go-task/task/pull/877)).
## v3.16.0 - 2022-09-29
- Add `npm` as new installation method: `npm i -g @go-task/cli`

4
package-lock.json generated
View File

@ -1,12 +1,12 @@
{
"name": "@go-task/cli",
"version": "3.16.0",
"version": "3.17.0",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "@go-task/cli",
"version": "3.16.0",
"version": "3.17.0",
"hasInstallScript": true,
"license": "MIT",
"dependencies": {

View File

@ -1,6 +1,6 @@
{
"name": "@go-task/cli",
"version": "3.16.0",
"version": "3.17.0",
"description": "A task runner / simpler Make alternative written in Go",
"scripts": {
"postinstall": "go-npm install",