Files
afilmory/apps/web/scripts/precheck.ts
2025-10-28 19:48:04 +08:00

15 lines
352 B
TypeScript

import path from 'node:path'
import { fileURLToPath } from 'node:url'
import { $ } from 'execa'
export const precheck = async () => {
const __dirname = path.dirname(fileURLToPath(import.meta.url))
const workdir = path.resolve(__dirname, '../../..')
await $({
cwd: workdir,
stdio: 'inherit',
})`pnpm --filter @afilmory/builder cli`
}