From b3f36fd4b4856f9a3a7c81803fd015b39761eb4c Mon Sep 17 00:00:00 2001 From: Hugo Haas Date: Tue, 31 Dec 2024 10:24:23 -0600 Subject: [PATCH] feat: added detection of Taskfile.yml via dev Add taskfile.dev to environment --- src/utils/devenv.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/utils/devenv.ts b/src/utils/devenv.ts index f39681a51..825eb4c50 100644 --- a/src/utils/devenv.ts +++ b/src/utils/devenv.ts @@ -107,6 +107,9 @@ export default async function(dir: Path) { case "Justfile": pkgs.push({ project: 'just.systems', constraint }) break + case "Taskfile.yml": + pkgs.push({ project: 'taskfile.dev', constraint }) + break } } else if (isDirectory) { switch (name) {