mirror of
https://github.com/go-task/task.git
synced 2025-01-20 04:59:37 +02:00
parent
13f4b376e8
commit
3a0c7a8c36
@ -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
|
||||
|
@ -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}}'
|
||||
|
Loading…
x
Reference in New Issue
Block a user