mirror of
https://github.com/trycua/computer.git
synced 2025-12-31 10:29:59 -06:00
10 lines
258 B
JavaScript
10 lines
258 B
JavaScript
#!/usr/bin/env node
|
|
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);
|
|
}
|