We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3785add commit 4096096Copy full SHA for 4096096
1 file changed
package.json
@@ -6,12 +6,15 @@
6
"scripts": {
7
"dev": "vite",
8
"build": "tsc && vite build",
9
- "lint": "eslint ./src --report-unused-disable-directives --max-warnings 0",
+ "check-ts": "tsc --noEmit",
10
+ "check-lint": "eslint ./src --report-unused-disable-directives --max-warnings 0",
11
"preview": "vite preview",
12
"find-unused": "ts-unused-exports ./tsconfig.json --showLineNumber",
13
"format": "prettier --write ./src",
14
+ "check-format": "prettier --check ./src",
15
"test": "vitest run --passWithNoTests",
- "test:watch": "vitest --watch"
16
+ "test:watch": "vitest --watch",
17
+ "check": "pnpm run lint && pnpm run check-ts && pnpm run find-unused && pnpm run check-format && pnpm run test"
18
},
19
"dependencies": {
20
"@tailwindcss/vite": "^4.1.7",
0 commit comments