Skip to content

Commit

Permalink
Merge branch 'main' into ndom91/nextjs-demo-app-styling
Browse files Browse the repository at this point in the history
  • Loading branch information
ndom91 authored Feb 11, 2024
2 parents 54b2951 + 7a66c0e commit 09e0685
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 99 deletions.
2 changes: 1 addition & 1 deletion docs/docs/concepts/faq.md
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ Check out the [Session strategies page](/concepts/session-strategies) to learn m

## Security

Parts of this section have been moved to their [page](/security)](/security).
Parts of this section have been moved to their [page](/security).

<details>
<summary>
Expand Down
4 changes: 2 additions & 2 deletions docs/docs/getting-started/providers/email-tutorial.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ The Email Provider can be used with both JSON Web Tokens and database sessions,
[`nodemailer`](https://www.npmjs.com/package/nodemailer) is a [peer dependency](https://nodejs.org/en/blog/npm/peer-dependencies/) when using the Email Provider. This means we need to install before we can start sending emails:

```bash npm2yarn
npm install -D nodemailer
npm install nodemailer
```

`nodemailer` will enable us to send emails from NodeJS, which the runtime on which Next.js application operate.
Expand Down Expand Up @@ -113,7 +113,7 @@ For this tutorial, we're going to use the **MongoDB** adapter, but any of the ot
First, let's start by installing the adapter package:

```bash npm2yarn
npm install -D @auth/mongodb-adapter mongodb
npm install @auth/mongodb-adapter mongodb
```

and create a simple MongoDB client:
Expand Down
4 changes: 2 additions & 2 deletions packages/core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@
},
"peerDependencies": {
"@simplewebauthn/browser": "^9.0.1",
"@simplewebauthn/server": "^9.0.1",
"@simplewebauthn/server": "^9.0.2",
"nodemailer": "^6.8.0"
},
"peerDependenciesMeta": {
Expand Down Expand Up @@ -103,4 +103,4 @@
"postcss": "8.4.19",
"postcss-nesting": "^12.0.2"
}
}
}
2 changes: 1 addition & 1 deletion packages/next-auth/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@
},
"peerDependencies": {
"@simplewebauthn/browser": "^9.0.1",
"@simplewebauthn/server": "^9.0.1",
"@simplewebauthn/server": "^9.0.2",
"next": "^14",
"nodemailer": "^6.6.5",
"react": "^18.2.0"
Expand Down
108 changes: 15 additions & 93 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 09e0685

Please sign in to comment.