Files
rogue/.agent/workflows/loc.md
2026-01-07 16:52:07 +11:00

7 lines
319 B
Markdown

---
description: Count lines of TypeScript source code excluding tests
---
// turbo-all
1. Count TypeScript lines excluding tests: `(Get-ChildItem -Recurse -Include *.ts -Exclude *.test.ts,*.spec.ts -Path . | Where-Object { $_.FullName -notmatch '\\node_modules\\' } | Get-Content |
Measure-Object -Line).Lines`