diff --git a/docs/package.json b/docs/package.json index b91b4123..a520ed68 100644 --- a/docs/package.json +++ b/docs/package.json @@ -22,6 +22,7 @@ "classnames": "^2.3.2", "mdx-mermaid": "1.2.2", "mermaid": "9.0.1", + "next-auth": "workspace:*", "prism-react-renderer": "1.3.5", "react": "^18.2.0", "react-dom": "^18.2.0", diff --git a/package.json b/package.json index ff6ea85c..3abc8518 100644 --- a/package.json +++ b/package.json @@ -5,6 +5,7 @@ "repository": "https://github.com/nextauthjs/next-auth.git", "scripts": { "build:app": "turbo run build --filter=next-auth-app", + "build:docs": "turbo run build --filter=docs", "build": "turbo run build --filter=next-auth --filter=@next-auth/* --filter=@auth/* --no-deps", "test": "turbo run test --concurrency=1 --filter=[HEAD^1] --filter=./packages/* --filter=!*pouchdb-* --filter=!@*upstash* --filter=!*dynamodb-*", "clean": "turbo run clean --no-cache", diff --git a/packages/core/package.json b/packages/core/package.json index 8d3bb2df..7bbd79e5 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -20,7 +20,7 @@ "Balázs Orbán ", "Nico Domino ", "Lluis Agusti ", - "Thang Huu Vu ", + "Thang Huu Vu ", "Iain Collins ", "Nico Domino ", "Lluis Agusti ", - "Thang Huu Vu " + "Thang Huu Vu " ], "main": "index.js", "module": "index.js", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 9b22a1ad..99be9bdc 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -258,6 +258,7 @@ importers: docusaurus-plugin-typedoc: ^0.18.0 mdx-mermaid: 1.2.2 mermaid: 9.0.1 + next-auth: workspace:* prism-react-renderer: 1.3.5 react: ^18.2.0 react-dom: ^18.2.0 @@ -272,6 +273,7 @@ importers: classnames: 2.3.2 mdx-mermaid: 1.2.2_mermaid@9.0.1+react@18.2.0 mermaid: 9.0.1 + next-auth: link:../packages/next-auth prism-react-renderer: 1.3.5_react@18.2.0 react: 18.2.0 react-dom: 18.2.0_react@18.2.0 diff --git a/turbo.json b/turbo.json index 9edd9663..a9ee245d 100644 --- a/turbo.json +++ b/turbo.json @@ -1,28 +1,19 @@ { "$schema": "https://turborepo.org/schema.json", "pipeline": { - "docs#build": { - "dependsOn": [ - "^build", - "next-auth#build", - "@auth/core#build", - "@auth/sveltekit#build" - ] - }, "build": { "dependsOn": ["^build"] }, "next-auth#build": { "dependsOn": ["^build"], "outputs": [ - "lib/**", + "client/**", + "core/**", "css/**", "jwt/**", - "react/**", "next/**", - "client/**", "providers/**", - "core/**", + "react/**", "index.d.ts", "index.js", "adapters.d.ts",