Skip to content

Commit

Permalink
better type
Browse files Browse the repository at this point in the history
  • Loading branch information
rossrobino committed Jan 29, 2025
1 parent 3d80cd6 commit 41479b6
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions packages/create-domco/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,7 @@ import process from "node:process";
import { format } from "prettier";
import whichPmRuns from "which-pm-runs";

type PackageManager =
| ("npm" | "bun" | "pnpm" | "yarn" | "deno")
| (string & {});
type PackageManager = "npm" | "bun" | "pnpm" | "yarn" | "deno" | (string & {});

type TemplateFile = { name: string; contents: string };

Expand Down

0 comments on commit 41479b6

Please sign in to comment.