Skip to content
#

Taskfile

taskfile logo

Task is an open source task runner or build-tool that aims to be simpler and

easier to use than, for example, GNU Make.

It is language agnostic and uses a simple YAML file to define tasks. It knows

when tasks need to be rerun or not, it can use includes and run tasks in

parallel.

Here are 21 public repositories matching this topic...

deepbrook
deepbrook commented Jul 11, 2022

Currently, when running task -l the available tasks are listed alphabetically.
While this works for simple taskfiles, in cases with several includes and many compound tasks in the root file, I'd hoped that those tasks defined in the root taskfile are listed first (visually separated by an empty line).

Example:
Given two taskfiles to be included:

# taskfile.lib.yaml
---
version:
vscode-ansible
jakobkmar
jakobkmar commented Feb 13, 2022

Problem

This plugin makes high use of executing shell commands, and has a few config options for these. But not all commands used by the plugin are covered, for example the ansible-playbook, ansible-config command and some more.

Sometimes you just need to add the same prefix to all of the commands, for example when using VS Code as a Flatpak, where you want to prefix every command wi

feature good first issue