Skip to content

0.14.0

Choose a tag to compare

@linux-china linux-china released this 23 Jan 15:57
· 595 commits to master since this release
  • Add Bun Shell support: create a Taskfile.ts with following code:
import {$} from "bun";

export async function hello() {
    await $`echo Hello World!`;
}
export async function list_js() {
    await $`ls *.js`;
}

Then run tk hello to run task with Bun Shell.