Skip to content

Commit

Permalink
chore: add lint cache
Browse files Browse the repository at this point in the history
  • Loading branch information
Jinjiang committed Feb 1, 2024
1 parent 9e4e954 commit a92e351
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,10 @@
"build": "pnpm run build:node && pnpm run build:browser",
"build:node": "tsc --project tsconfig-build.json",
"build:browser": "vite build",
"lint": "prettier --check .",
"lint:fix": "prettier --write .",
"lint:eslint": "eslint {src,test}/**.ts",
"lint:eslint:fix": "eslint {src,test}/**.ts --fix",
"lint": "prettier --cache --check .",
"lint:fix": "prettier --cache --write .",
"lint:eslint": "eslint {src,test}/**.ts --cache",
"lint:eslint:fix": "eslint {src,test}/**.ts --cache --fix",
"test": "pnpm run test:tsc && pnpm run test:vitest",
"test:tsc": "tsc --noEmit",
"test:vitest": "vitest run",
Expand Down

0 comments on commit a92e351

Please sign in to comment.