You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix(install): use bun x instead of bunx for DLX commands
Some installation methods (e.g. mise) don't add `bunx` exe to PATH on
Windows. Using `bun x` (subcommand) instead of `bunx` (separate binary)
is more reliable across platforms and calls fewer binaries.
Closes#1005
-**Shell mode**: Yarn 2+ does not support shell mode (`-c`), command will print a warning and try to execute anyway.
121
121
-**--package flag position**: For pnpm, `--package` comes before `dlx`. For npm, `--package` can be anywhere. For yarn, `-p` comes after `dlx`.
122
122
-**Auto-confirm prompts**: For npm and npx (yarn@1 fallback), `--yes` is automatically added to align with pnpm's behavior which doesn't require confirmation.
123
-
-**bun**: Uses `bunx` as a standalone binary (not a subcommand of `bun`). It does not support `--package`, `--shell-mode`, or `--silent` flags.
123
+
-**bun**: Uses `bun x` subcommand (preferred over the `bunx`standalone binary for better cross-platform compatibility). It does not support `--package`, `--shell-mode`, or `--silent` flags.
124
124
125
125
### Argument Handling
126
126
@@ -721,7 +721,7 @@ Error: yarn@1.22.19 does not support dlx command
721
721
722
722
- Frustrating user experience
723
723
- npx fallback works well and is available
724
-
- Other tools (like bunx) also provide fallbacks
724
+
- Other tools (like `bun x`) also provide fallbacks
725
725
- Users shouldn't need to switch package managers for dlx
0 commit comments