Skip to content

Commit

Permalink
Merge pull request #1066 from hugoh/feat/taskfile
Browse files Browse the repository at this point in the history
feat: added detection of Taskfile.yml via dev
  • Loading branch information
mxcl authored Jan 8, 2025
2 parents 67b6bdf + b3f36fd commit 6a195bf
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/utils/devenv.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down

0 comments on commit 6a195bf

Please sign in to comment.