Skip to content

Commit

Permalink
mod lint script
Browse files Browse the repository at this point in the history
  • Loading branch information
DexterStorey committed Oct 3, 2024
1 parent 5501fc8 commit 8757aa2
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)
Expand Down
2 changes: 1 addition & 1 deletion lib/route.ts
Original file line number Diff line number Diff line change
@@ -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,
Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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": "*",
Expand Down

0 comments on commit 8757aa2

Please sign in to comment.