()
| 141 | } |
| 142 | |
| 143 | private getShellCommand(): [string, string[]] { |
| 144 | // Node.js 24 deprecates passing separate arguments when shell is enabled because |
| 145 | // they are concatenated without escaping. Preserve the existing shell semantics |
| 146 | // explicitly by passing the already-joined command as a single string. |
| 147 | return [this.joinedCommand, []]; |
| 148 | } |
| 149 | |
| 150 | private runCommandInPackagesTopological() { |
| 151 | let profiler: Profiler | undefined; |
no outgoing calls
no test coverage detected