Skip to content

Commit

Permalink
docs: add different package managers installations (#1980)
Browse files Browse the repository at this point in the history
* docs: Split 'Adding Vitest to your Project' options

make it easier to copy bash commands for each package manager

* docs: Split 'Adding Vitest to your Project' options

Make it easier to copy bash commands for each package manager
  • Loading branch information
Orleydovsky committed Sep 8, 2022
1 parent e5cf1c1 commit 90ffa6d
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions docs/guide/index.md
Expand Up @@ -16,14 +16,16 @@ You can try Vitest online on [StackBlitz](https://vitest.new). It runs Vitest di

## Adding Vitest to your Project

With npm
```bash
# with npm
npm install -D vitest

# or with yarn
```
or with yarn
```bash
yarn add -D vitest

# or with pnpm
```
or with pnpm
```bash
pnpm add -D vitest
```

Expand Down

0 comments on commit 90ffa6d

Please sign in to comment.