Fix files on lint

This commit is contained in:
Nate Kelley 2025-07-14 14:30:07 -06:00
parent 3b48e51969
commit 727e66a630
No known key found for this signature in database
GPG Key ID: FD90372AB8D98B4F
12 changed files with 12 additions and 12 deletions

View File

@ -11,7 +11,7 @@
"build": "tsup",
"dev": "bun --watch src/index.ts",
"dev:build": "tsup --watch",
"lint": "biome check",
"lint": "biome check --write",
"start": "bun dist/index.js",
"test": "vitest run",
"test:coverage": "vitest --coverage",

View File

@ -8,7 +8,7 @@
"deploy": "npx trigger.dev@v4-beta deploy",
"prebuild": "node scripts/validate-env.js",
"build": "echo 'No build step required but we run it to make sure env is loaded' && tsc --noEmit",
"lint": "biome check",
"lint": "biome check --write",
"test": "vitest run",
"test:watch": "vitest watch",
"test:coverage": "vitest run --coverage",

View File

@ -18,7 +18,7 @@
"build:commonjs": "tsc --module commonjs --moduleResolution node",
"build:commonjs:watch": "npm run build:commonjs && tsc --module commonjs --moduleResolution node --watch",
"dev": "tsc --watch",
"lint": "biome check",
"lint": "biome check --write",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"test:watch": "vitest",

View File

@ -19,7 +19,7 @@
"typecheck": "tsc --noEmit",
"dev": "tsc --watch",
"dev:mastra": "mastra dev --dir src",
"lint": "biome check",
"lint": "biome check --write",
"test": "vitest run",
"test:watch": "vitest watch",
"test:coverage": "vitest run --coverage",

View File

@ -17,7 +17,7 @@
"build": "tsc",
"build:commonjs": "tsc --module commonjs --moduleResolution node",
"build:commonjs:watch": "npm run build:commonjs && tsc --module commonjs --moduleResolution node --watch",
"lint": "biome check",
"lint": "biome check --write",
"lint:fix": "biome check --write",
"test": "vitest run",
"test:coverage": "vitest run --coverage",

View File

@ -37,7 +37,7 @@
"db:studio": "drizzle-kit studio",
"db:init": "echo 'dev:init should be run from turbo.json' && true",
"dev": "echo 'Running db:init from turbo.json' && npm run db:init",
"lint": "biome check",
"lint": "biome check --write",
"stop": "pnpm run db:stop",
"test": "vitest run",
"test:coverage": "vitest run --coverage",

View File

@ -17,7 +17,7 @@
"test": "vitest run",
"test:watch": "vitest watch",
"test:coverage": "vitest run --coverage",
"lint": "biome check",
"lint": "biome check --write",
"lint:fix": "biome check --apply .",
"format": "biome format .",
"format:fix": "biome format --write ."

View File

@ -8,7 +8,7 @@
"prebuild": "tsx scripts/type-import-check.ts",
"build": "tsc --build",
"dev": "tsc --watch",
"lint": "biome check",
"lint": "biome check --write",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest"

View File

@ -19,7 +19,7 @@
"build": "tsc",
"typecheck": "tsc --noEmit",
"dev": "tsc --watch",
"lint": "biome check",
"lint": "biome check --write",
"test": "vitest run",
"test:watch": "vitest watch",
"test:coverage": "vitest run --coverage",

View File

@ -23,7 +23,7 @@
"build": "tsc",
"build:commonjs": "tsc --module commonjs --moduleResolution node",
"build:commonjs:watch": "npm run build:commonjs && tsc --module commonjs --moduleResolution node --watch",
"lint": "biome check",
"lint": "biome check --write",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"test:watch": "vitest watch",

View File

@ -17,7 +17,7 @@
"prebuild": "node scripts/validate-env.js",
"build": "tsc",
"typecheck": "tsc --noEmit",
"lint": "biome check",
"lint": "biome check --write",
"test": "vitest run",
"test:watch": "vitest watch",
"test:coverage": "vitest run --coverage"

View File

@ -6,7 +6,7 @@
"module": "src/index.ts",
"scripts": {
"build": "tsc --build",
"lint": "biome check",
"lint": "biome check --write",
"test": "vitest run",
"test:coverage": "vitest --coverage",
"test:ui": "vitest --ui",