We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 67e2ecb commit 518988bCopy full SHA for 518988b
.husky/pre-commit
@@ -1 +1,21 @@
1
-make test
+echo "\nTest Packages\n"
2
+
3
+echo "Test - frontend\n"
4
5
+cd frontend
6
7
+pnpm prettier --write --log-level silent . && pnpm eslint . --fix
8
9
+echo "Done!\n"
10
11
+echo "Test - http\n"
12
13
+cd ../http
14
15
+go build -a -o bin/main ./
16
+go build -a -o bin/gen-structs ./cmd/cli/typegen/structs
17
+go build -a -o bin/gen-declarations ./cmd/cli/typegen/declarations
18
19
20
21
+exit 0
scripts/package/typegen.sh
@@ -20,4 +20,6 @@ go build -o bin/gen-declarations ./cmd/cli/typegen/declarations
cd ../
22
23
+pnpm prettier --write --loglevel silent ./frontend/src/lib/types/endpoint.d.ts
24
25
echo "\n${F_BOLD}Done!${NO_FORMAT}\n"
0 commit comments