Skip to content

Commit 6a195bf

Browse files
authored
Merge pull request #1066 from hugoh/feat/taskfile
feat: added detection of Taskfile.yml via dev
2 parents 67b6bdf + b3f36fd commit 6a195bf

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/utils/devenv.ts

+3
Original file line numberDiff line numberDiff line change
@@ -107,6 +107,9 @@ export default async function(dir: Path) {
107107
case "Justfile":
108108
pkgs.push({ project: 'just.systems', constraint })
109109
break
110+
case "Taskfile.yml":
111+
pkgs.push({ project: 'taskfile.dev', constraint })
112+
break
110113
}
111114
} else if (isDirectory) {
112115
switch (name) {

0 commit comments

Comments
 (0)