Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ next-auth/
│ ├─ examples/ <-- contains our examples. These will be synced to the example template repos.
│ ├─ playgrounds/ <-- experimental stuff
├─ packages/
│ ├─ adapter-*/ <-- adapter packges.
│ ├─ adapter-*/ <-- adapter packages.
│ ├─ core/ <-- the core package. Most of the logic is here.
│ ├─ framework-*/ <-- framework packages
│ ├─ next-auth/ <-- next-auth@v5
Expand All @@ -77,13 +77,13 @@ git clone [email protected]:nextauthjs/next-auth.git
cd next-auth
```

2. Set up the correct pnpm version, using [Corepack](https://nodejs.org/api/corepack.html). Run the following in the project'a root:
2. Set up the correct pnpm version, using [Corepack](https://nodejs.org/api/corepack.html). Run the following in the project's root:

```sh
corepack enable pnpm
```

(Now, if you run `pnpm --version`, it should print the same verion as the `packageManager` property in the [`package.json` file](https://github.com/nextauthjs/next-auth/blob/main/package.json))
(Now, if you run `pnpm --version`, it should print the same version as the `packageManager` property in the [`package.json` file](https://github.com/nextauthjs/next-auth/blob/main/package.json))

3. Install packages. Developing requires Node.js v18:

Expand Down