Skip to content

Commit

Permalink
docs: pnpx -> pnpm dlx (#742)
Browse files Browse the repository at this point in the history
Because pnpx is deprecated and doesn't work in recent versions on pnpm.
  • Loading branch information
sadfun authored Feb 7, 2024
1 parent daa8952 commit c54d45a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/www/src/lib/components/docs/copy-button.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
commands = {
npm: value,
yarn: value.replace(/^npx/, "yarn dlx"),
pnpm: value.replace(/^npx/, "pnpx"),
pnpm: value.replace(/^npx/, "pnpm dlx"),
bun: value.replace(/^npx/, "bunx"),
};
}
Expand Down

0 comments on commit c54d45a

Please sign in to comment.