Skip to content

Commit 30a633d

Browse files
make analyzer for tools left
1 parent d4f576b commit 30a633d

File tree

9 files changed

+1295
-2
lines changed

9 files changed

+1295
-2
lines changed

.husky/pre-commit

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
#!/usr/bin/env sh
2+
3+
# Run lint
4+
npm run lint
5+
6+
# Run type check
7+
npm run typecheck

package.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,11 @@
77
"build": "next build && next-sitemap",
88
"start": "next start",
99
"lint": "next lint",
10+
"typecheck": "tsc --noEmit",
1011
"gen:manifest": "node scripts/gen-manifest.mjs",
1112
"readme:tools": "node scripts/update-readme.mjs",
12-
"postbuild": "next-sitemap"
13+
"postbuild": "next-sitemap",
14+
"prepare": "husky install"
1315
},
1416
"dependencies": {
1517
"@next/third-parties": "^15.4.6",

0 commit comments

Comments
 (0)