Skip to content

Commit df18928

Browse files
committedFeb 26, 2025
fix: update bun to not use alias
1 parent c9a0e79 commit df18928

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎lib/rehype-npm-command.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ export function rehypeNpmCommand() {
4040
);
4141
node.properties["__bunCommand__"] = npmCommand.replace(
4242
"npx",
43-
"bunx --bun",
43+
"bun x --bun",
4444
);
4545
}
4646

@@ -76,7 +76,7 @@ export function rehypeNpmCommand() {
7676
);
7777
node.properties["__bunCommand__"] = npmCommand.replace(
7878
"npx",
79-
"bunx --bun",
79+
"bun x --bun",
8080
);
8181
}
8282

0 commit comments

Comments
 (0)
Please sign in to comment.