Skip to content

Commit 15592f1

Browse files
committed
fix: update exec commands
1 parent 160527b commit 15592f1

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

app/utils/install-command.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@ import type { JsrPackageInfo } from '#shared/types/jsr'
22

33
export const packageManagers = [
44
{ id: 'npm', label: 'npm', action: 'install', execute: 'npx' },
5-
{ id: 'pnpm', label: 'pnpm', action: 'add', execute: 'pnpx' },
5+
{ id: 'pnpm', label: 'pnpm', action: 'add', execute: 'pnpm dlx' },
66
{ id: 'yarn', label: 'yarn', action: 'add', execute: 'yarn dlx' },
77
{ id: 'bun', label: 'bun', action: 'add', execute: 'bunx' },
88
{ id: 'deno', label: 'deno', action: 'add', execute: 'deno run' },
9-
{ id: 'vlt', label: 'vlt', action: 'install', execute: 'vlx' },
9+
{ id: 'vlt', label: 'vlt', action: 'install', execute: 'vlt x' },
1010
] as const
1111

1212
export type PackageManagerId = (typeof packageManagers)[number]['id']

0 commit comments

Comments
 (0)