Install dev dependencies before running type checker

This commit is contained in:
James Murdza
2025-10-24 17:25:44 -07:00
parent 28a46c6011
commit 8ef5b22dce

View File

@@ -2,6 +2,7 @@
const { execSync } = require('child_process');
try {
execSync('pnpm -C libs/typescript install', { stdio: 'inherit' });
execSync('pnpm -C libs/typescript -r run typecheck', { stdio: 'inherit' });
} catch (err) {
process.exit(1);