feat: 添加 PrimeVue 组件演示页面
All checks were successful
CI/CD Pipeline / playwright (push) Successful in 2m39s
CI/CD Pipeline / build-and-deploy (push) Successful in 2m51s

This commit is contained in:
严浩
2025-10-28 23:48:14 +08:00
parent 33e8a4a5d6
commit c490cb1c8e
15 changed files with 136 additions and 9 deletions

View File

@@ -0,0 +1,15 @@
#!/usr/bin/env node
/**
* Type check script for lint-staged
* This script ignores file arguments passed by lint-staged and runs type-check on the entire project
*/
import { spawnSync } from 'child_process';
const result = spawnSync('pnpm', ['run', 'type-check'], {
stdio: 'inherit',
shell: process.platform === 'win32',
});
process.exit(result.status ?? 1);