Skip to content

Commit

Permalink
Add CHANGELOG for go-task#815
Browse files Browse the repository at this point in the history
  • Loading branch information
andreynering committed Nov 2, 2022
1 parent 13f4b37 commit 3a0c7a8
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
4 changes: 2 additions & 2 deletions docs/Taskfile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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}}'
Expand Down

0 comments on commit 3a0c7a8

Please sign in to comment.