Skip to content

Commit fa5bcc0

Browse files
authored
fix installer command for bun
1 parent ff7db8b commit fa5bcc0

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

ark/docs/components/InstallationTabs.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ type InstallationTabProps = {
1111

1212
const InstallerTab = ({ name }: InstallationTabProps) => (
1313
<Tab value={name} className="installer-tab">
14-
<CodeBlock lang="bash">{`${name} ${name === "yarn" ? "add" : "install"} arktype`}</CodeBlock>
14+
<CodeBlock lang="bash">{`${name} ${name in ["yarn", "bun"] ? "add" : "install"} arktype`}</CodeBlock>
1515
</Tab>
1616
)
1717

0 commit comments

Comments
 (0)