1
0
mirror of https://github.com/go-task/task.git synced 2025-01-20 04:59:37 +02:00

Add CHANGELOG for #815

Closes #661
This commit is contained in:
Andrey Nering 2022-11-02 11:39:05 -03:00
parent 13f4b376e8
commit 3a0c7a8c36
2 changed files with 9 additions and 2 deletions

View File

@ -1,5 +1,12 @@
# Changelog
## Unreleased
- It's now possible to call a `default` task in an included Taskfile by using
just the namespace. For example: `docs:default` is now automatically
aliased to `docs`
([#661](https://github.com/go-task/task/issues/661), [#815](https://github.com/go-task/task/pull/815)).
## v3.17.0
- Add a "Did you mean ...?" suggestion when a task does not exits another one

View File

@ -6,9 +6,9 @@ tasks:
cmds:
- yarn install
start:
default:
desc: Start website
aliases: [s]
aliases: [s, start]
vars:
HOST: '{{default "localhost" .HOST}}'
PORT: '{{default "3001" .PORT}}'