Skip to content

Commit

Permalink
Docs: fix pnpm command for saving dev deps (vercel#53937) (vercel#53938)
Browse files Browse the repository at this point in the history
Previous of after (before in linked issue)
```
❯ pnpm add --save-dev @next/eslint-plugin-next
Already up to date
Progress: resolved 525, reused 517, downloaded 0, added 0, done
Done in 6.4s
```

Resolves vercel#53937
  • Loading branch information
keevan committed Aug 12, 2023
1 parent e0ca2ba commit ea0bb97
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ npm install --save-dev eslint-config-prettier

yarn add --dev eslint-config-prettier

pnpm add --dev eslint-config-prettier
pnpm add --save-dev eslint-config-prettier

bun add --dev eslint-config-prettier
```
Expand Down Expand Up @@ -277,7 +277,7 @@ npm install --save-dev @next/eslint-plugin-next

yarn add --dev @next/eslint-plugin-next

pnpm add --dev @next/eslint-plugin-next
pnpm add --save-dev @next/eslint-plugin-next

bun add --dev @next/eslint-plugin-next
```
Expand Down

0 comments on commit ea0bb97

Please sign in to comment.