Skip to content

Commit

Permalink
Fix format
Browse files Browse the repository at this point in the history
  • Loading branch information
bricesuazo committed Oct 29, 2023
1 parent 1395ce4 commit d100a0b
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -44,3 +44,5 @@ yarn-error.log*

# turbo
.turbo

.prettiercache
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@
"db:studio": "pnpm -F db studio",
"start": "turbo start",
"dev": "turbo dev --parallel",
"format": "turbo format --continue -- --cache --cache-location='node_modules/.cache/.prettiercache'",
"format:fix": "turbo format --continue -- --write --cache --cache-location='node_modules/.cache/.prettiercache'",
"lint": "turbo lint --continue -- --cache --cache-location 'node_modules/.cache/.eslintcache' && manypkg check",
"format": "turbo format --continue -- --cache --cache-location node_modules/.cache/.prettiercache",
"format:fix": "turbo format --continue -- --write --cache --cache-location node_modules/.cache/.prettiercache",
"lint": "turbo lint --continue -- --cache --cache-location node_modules/.cache/.eslintcache && manypkg check",
"lint:fix": "turbo lint --continue -- --fix --cache --cache-location 'node_modules/.cache/.eslintcache' && manypkg fix",
"typecheck": "turbo typecheck",
"ui": "pnpm --filter=ui ui"
Expand Down
3 changes: 2 additions & 1 deletion packages/auth/index.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
import Discord from "@auth/core/providers/discord";
import type { DefaultSession } from "@auth/core/types";
import { DrizzleAdapter } from "@auth/drizzle-adapter";
import { db, tableCreator } from "@bricesuazo/db";
import NextAuth from "next-auth";

import { db, tableCreator } from "@bricesuazo/db";

import { env } from "./env.mjs";

export type { Session } from "next-auth";
Expand Down

0 comments on commit d100a0b

Please sign in to comment.