mirror of
https://github.com/go-task/task.git
synced 2025-02-03 13:22:11 +02:00
v3.17.0
This commit is contained in:
parent
852a176e1f
commit
33b6927b79
@ -1,6 +1,6 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
## Unreleased
|
## v3.17.0
|
||||||
|
|
||||||
- Add a "Did you mean ...?" suggestion when a task does not exits another one
|
- Add a "Did you mean ...?" suggestion when a task does not exits another one
|
||||||
with a similar name is found
|
with a similar name is found
|
||||||
|
@ -5,6 +5,24 @@ sidebar_position: 6
|
|||||||
|
|
||||||
# Changelog
|
# 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
|
## v3.16.0 - 2022-09-29
|
||||||
|
|
||||||
- Add `npm` as new installation method: `npm i -g @go-task/cli`
|
- Add `npm` as new installation method: `npm i -g @go-task/cli`
|
||||||
|
4
package-lock.json
generated
4
package-lock.json
generated
@ -1,12 +1,12 @@
|
|||||||
{
|
{
|
||||||
"name": "@go-task/cli",
|
"name": "@go-task/cli",
|
||||||
"version": "3.16.0",
|
"version": "3.17.0",
|
||||||
"lockfileVersion": 2,
|
"lockfileVersion": 2,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"packages": {
|
"packages": {
|
||||||
"": {
|
"": {
|
||||||
"name": "@go-task/cli",
|
"name": "@go-task/cli",
|
||||||
"version": "3.16.0",
|
"version": "3.17.0",
|
||||||
"hasInstallScript": true,
|
"hasInstallScript": true,
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@go-task/cli",
|
"name": "@go-task/cli",
|
||||||
"version": "3.16.0",
|
"version": "3.17.0",
|
||||||
"description": "A task runner / simpler Make alternative written in Go",
|
"description": "A task runner / simpler Make alternative written in Go",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"postinstall": "go-npm install",
|
"postinstall": "go-npm install",
|
||||||
|
Loading…
x
Reference in New Issue
Block a user