Skip to content

Commit

Permalink
feat(dev): added support for justfiles
Browse files Browse the repository at this point in the history
  • Loading branch information
GauBen authored and mxcl committed Sep 6, 2024
1 parent 01ca8db commit 0ad4a6d
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions src/utils/devenv.ts
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,14 @@ export default async function(dir: Path) {
break
case "cdk.json":
pkgs.push({ project: 'aws.amazon.com/cdk', constraint })
break
case "cdk.json":
pkgs.push({ project: 'aws.amazon.com/cdk', constraint })
break
case "justfile":
case "Justfile":
pkgs.push({ project: 'just.systems', constraint })
break
}
} else if (isDirectory) {
switch (name) {
Expand Down

0 comments on commit 0ad4a6d

Please sign in to comment.