1
0
mirror of https://github.com/go-task/task.git synced 2024-12-12 10:45:49 +02:00

README: Add more alternatives

This commit is contained in:
Andrey Nering 2017-05-27 10:52:44 -03:00
parent 561349c820
commit 460297e43a

View File

@ -4,7 +4,7 @@
# Task - Simple task runner / "Make" alternative # Task - Simple task runner / "Make" alternative
Task is a simple tool that allows you to easily run development and build Task is a simple tool that allows you to easily run development and build
tasks. Task is written in Go, but can be used to develop any language. tasks. Task is written in Golang, but can be used to develop any language.
It aims to be simpler and easier to use then [GNU Make][make]. It aims to be simpler and easier to use then [GNU Make][make].
## Installation ## Installation
@ -360,12 +360,14 @@ If you give a `--watch` or `-w` argument, task will watch for files changes
and run the task again. This requires the `sources` attribute to be given, and run the task again. This requires the `sources` attribute to be given,
so task know which files to watch. so task know which files to watch.
## Alternatives ## Alternative task runners
Similar software: - YAML based:
- [tj/robo][robo]
- [tj/robo][robo] - [dogtools/dog][dog]
- [dogtools/dog][dog] - Go based:
- [go-godo][godo]
- [markbates/grift][grift]
[make]: https://www.gnu.org/software/make/ [make]: https://www.gnu.org/software/make/
[releases]: https://github.com/go-task/task/releases [releases]: https://github.com/go-task/task/releases
@ -373,4 +375,6 @@ Similar software:
[gotemplate]: https://golang.org/pkg/text/template/ [gotemplate]: https://golang.org/pkg/text/template/
[robo]: https://github.com/tj/robo [robo]: https://github.com/tj/robo
[dog]: https://github.com/dogtools/dog [dog]: https://github.com/dogtools/dog
[godo]: https://github.com/go-godo/godo
[grift]: https://github.com/markbates/grift
[sh]: https://github.com/mvdan/sh [sh]: https://github.com/mvdan/sh