1 parent f1eccb6 commit b3393a5Copy full SHA for b3393a5
2 files changed
.husky/pre-commit
@@ -1,2 +1,2 @@
1
-bun run format
+bun run format && bun run lint && bun run typecheck && bun run test
2
git update-index --again
src/scaffold/config.ts
@@ -232,9 +232,8 @@ jobs:
232
- run: bun run test
233
`;
234
235
-const tplPreCommitHook = `#!/bin/sh
236
-bun lint && bun format:check
237
-`;
+const tplPreCommitHook = `bun run format && bun run lint && bun run typecheck && bun run test
+git update-index --again`;
238
239
const tplDomainPackageJson = `{
240
"name": "{{scopeName}}/domain",
0 commit comments