Skip to content

Commit 6eddd38

Browse files
committed
chore(build): simplify pre-push hook to avoid submodule deadlocks
Remove build step from pre-push hook — tsc and build deadlock in submodule context. Lint, typecheck, and test are sufficient gates.
1 parent 9a77db6 commit 6eddd38

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.husky/pre-push

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
node node_modules/.bin/eslint . 2>&1 && node node_modules/.bin/tsc --noEmit 2>&1 && node node_modules/.bin/tsx src/bridges/user/web/build.ts 2>&1 && printf '#!/usr/bin/env node\n' | cat - dist/cli.js > dist/cli.tmp && mv dist/cli.tmp dist/cli.js && node --test dist/test/coordinator-socket-error.integration.test.js 2>&1
1+
node node_modules/.bin/eslint . 2>&1 && node node_modules/.bin/tsc --noEmit 2>&1 && node --test dist/test/coordinator-socket-error.integration.test.js 2>&1

0 commit comments

Comments
 (0)