0.14.0
- Add Bun Shell support: create a
Taskfile.tswith 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.