Skip to content

Commit

Permalink
Update lint scripts to use bun for execution
Browse files Browse the repository at this point in the history
  • Loading branch information
lordvlad committed Dec 29, 2024
1 parent 011769e commit e42ad1f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,8 @@
"scripts": {
"prestart": "npm run build",
"dev": "vite dev",
"lint": "prettier src --check && eslint src",
"lint:fix": "prettier src --write && eslint src --fix",
"lint": "bun exec 'prettier src --check && eslint src'",
"lint:fix": "bun exec 'prettier src --write && eslint src --fix'",
"test": "vitest run",
"test:dev": "vitest watch --ui",
"build": "vite build",
Expand Down

0 comments on commit e42ad1f

Please sign in to comment.