[READ-ONLY] Mirror of https://github.com/bombshell-dev/docs. bomb.sh/docs
0

Configure Feed

Select the types of activity you want to include in your feed.

update: enhance installation instructions with tabbed interface for package managers

Paul Valladares (Mar 23, 2025, 8:03 PM -0600) 4be1cbfd d49b4979

+18 -3
+18 -3
src/content/docs/clack/core.mdx
··· 2 2 title: Core 3 3 description: Learn about the core functionality of Clack 4 4 --- 5 + import { Tabs, TabItem } from '@astrojs/starlight/components'; 5 6 6 7 The `@clack/core` package provides the fundamental building blocks for creating interactive command-line interfaces. It's designed to be flexible, extensible, and easy to use. 7 8 ··· 40 41 41 42 To start using the core package, first install it: 42 43 43 - ```bash 44 - npm install @clack/core 45 - ``` 44 + <Tabs> 45 + <TabItem label="npm" icon="seti:npm"> 46 + ```bash 47 + npm install @clack/core 48 + ``` 49 + </TabItem> 50 + <TabItem label="pnpm" icon="pnpm"> 51 + ```bash 52 + pnpm add @clack/core 53 + ``` 54 + </TabItem> 55 + <TabItem label="Yarn" icon="seti:yarn"> 56 + ```bash 57 + yarn add @clack/core 58 + ``` 59 + </TabItem> 60 + </Tabs> 46 61 47 62 Then import the components you need: 48 63