Skip to content

Commit

Permalink
package-manager-detector has started support the deno, but ignore…
Browse files Browse the repository at this point in the history
…s it.
  • Loading branch information
samchon committed Nov 16, 2024
1 parent 1d0e2d7 commit a996fd5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/executable/TypiaSetupWizard.ts
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ export namespace TypiaSetupWizard {
"npm" | "pnpm" | "yarn" | "bun" | null
> => {
const result: DetectResult | null = await detect({ cwd: process.cwd() });
if (result?.name === "npm") return null; // NPM case is still selectable
if (result?.name === "npm" || result?.name === "deno") return null; // NPM case is still selectable
return result?.name ?? null;
};

Expand Down

0 comments on commit a996fd5

Please sign in to comment.