()
| 605 | } |
| 606 | |
| 607 | function getLowMemoryFlags(): string[] { |
| 608 | const total = getSystemTotalMb(); |
| 609 | if (total > LOW_MEMORY_TOTAL_MB_THRESHOLD) return []; |
| 610 | const heapMb = total < 4096 ? 256 : 512; |
| 611 | return [`--js-flags=--max-old-space-size=${heapMb}`]; |
| 612 | } |
| 613 | |
| 614 | export interface BuildChromeArgsOptions { |
| 615 | width: number; |
no test coverage detected