Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We鈥檒l occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: separate build commands for core and app #3845

Merged
merged 3 commits into from
Feb 18, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
3 changes: 2 additions & 1 deletion package.json
Expand Up @@ -11,7 +11,8 @@
},
"repository": "https://github.com/nextauthjs/next-auth.git",
"scripts": {
"build": "turbo run build",
"build:app": "turbo run build --scope=next-auth-app --include-dependencies",
"build": "turbo run build --scope=next-auth --scope=@next-auth/* --no-deps",
"lint": "turbo run lint",
"lint:fix": "turbo run lint -- --fix",
"test": "turbo run test --concurrency=1 --ignore=packages/adapter-pouch/*",
Expand Down
5 changes: 3 additions & 2 deletions packages/next-auth/tsconfig.json
@@ -1,8 +1,9 @@
{
"extends": "tsconfig/base.json",
"compilerOptions": {
"emitDeclarationOnly": true,
"baseUrl": ".",
"outDir": ".",
"outDir": "."
},
"exclude": ["config"]
}
}
1 change: 0 additions & 1 deletion packages/tsconfig/base.json
@@ -1,6 +1,5 @@
{
"compilerOptions": {
"emitDeclarationOnly": true,
"strictNullChecks": true,
"target": "es2019",
"lib": ["dom", "dom.iterable", "esnext"],
Expand Down