diff --git a/CHANGELOG.md b/CHANGELOG.md index a571c38..72342ab 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,4 @@ +- [2024-10-03] [mod lint script](https://github.com/RubricLab/auth/commit/f06a0912e6b4e04ff260f44e263e6f396b44d9fb) - [2024-10-03] [gitignore turbo, format](https://github.com/RubricLab/auth/commit/cbd07d8b075bd67659bc067742302ef4fdbe0e17) - [2024-10-02] [gitignore, biome, vscode](https://github.com/RubricLab/auth/commit/017182b92cbae09df53e41423db10c788ba94bf7) - [2024-10-02] [init](https://github.com/RubricLab/auth/commit/40145b017976d9a7393063a4640e6965af45eac4) diff --git a/lib/route.ts b/lib/route.ts index bc79412..649c883 100644 --- a/lib/route.ts +++ b/lib/route.ts @@ -1,5 +1,5 @@ import { type NextRequest, NextResponse } from 'next/server' -import type { AuthProviders, DB, UserInfo, AuthProvider, AuthTokens } from './types' +import type { AuthProvider, AuthProviders, AuthTokens, DB, UserInfo } from './types' async function connectAuthProvider({ userId, diff --git a/package.json b/package.json index dfe275c..5150a4b 100644 --- a/package.json +++ b/package.json @@ -6,11 +6,11 @@ "bleed": "bun x npm-check-updates -u && bun i", "clean": "rm -rf .next && rm -rf node_modules", "format": "bun x biome format --write .", - "lint": "bun x biome check .", - "lint:fix": "bun x biome lint . --write --unsafe" + "lint": "bun x biome check . && bun x biome lint .", + "lint:fix": "bun x biome check --fix --unsafe . && bun x biome lint --write --unsafe ." }, "name": "@rubriclab/auth", - "version": "0.0.3", + "version": "0.0.4", "main": "index.ts", "dependencies": { "@rubriclab/package": "*",