Compare commits

...

5 Commits

Author SHA1 Message Date
GitHub Actions
c53435af8a chore(release): bump package version(s) [skip ci] 2023-08-12 09:41:43 +00:00
Balázs Orbán
f29a1f2778 fix(release): include lib in package
Related issue #8299
2023-08-12 11:38:01 +02:00
Balázs Orbán
a4c3270307 chore(turbo): include lib in cache outputs
Closes #8299
2023-08-12 11:35:44 +02:00
GitHub Actions
645d003d49 chore(release): bump package version(s) [skip ci] 2023-08-11 11:31:12 +00:00
Balázs Orbán
3f296615c5 fix(providers): docs typo 2023-08-11 13:27:33 +02:00
4 changed files with 5 additions and 4 deletions

View File

@@ -1,6 +1,6 @@
{
"name": "@auth/drizzle-adapter",
"version": "0.3.0",
"version": "0.3.1",
"description": "Drizzle adapter for Auth.js.",
"homepage": "https://authjs.dev",
"repository": "https://github.com/nextauthjs/next-auth",
@@ -11,8 +11,8 @@
"type": "module",
"types": "./index.d.ts",
"files": [
"*.js",
"*.d.ts*",
"*.js",
"lib",
"src"
],

View File

@@ -1,6 +1,6 @@
{
"name": "@auth/core",
"version": "0.11.0",
"version": "0.11.1",
"description": "Authentication for the Web.",
"keywords": [
"authentication",

View File

@@ -47,7 +47,7 @@ export interface PassageProfile {
* #### Configuration
*```js
* import Auth from "@auth/core"
* import Passage from "@auth/core/providers/assage"
* import Passage from "@auth/core/providers/passage"
*
* const request = new Request(origin)
* const response = await Auth(request, {

View File

@@ -7,6 +7,7 @@
],
"outputs": [
"dist/**/*",
"lib/**/*",
"*.js",
"*.d.ts",
"*.d.ts.map"