mirror of https://github.com/buster-so/buster.git
Fix files on lint
This commit is contained in:
parent
3b48e51969
commit
727e66a630
|
@ -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",
|
||||
|
|
|
@ -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",
|
||||
|
|
|
@ -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",
|
||||
|
|
|
@ -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",
|
||||
|
|
|
@ -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",
|
||||
|
|
|
@ -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",
|
||||
|
|
|
@ -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 ."
|
||||
|
|
|
@ -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"
|
||||
|
|
|
@ -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",
|
||||
|
|
|
@ -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",
|
||||
|
|
|
@ -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"
|
||||
|
|
|
@ -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",
|
||||
|
|
Loading…
Reference in New Issue