(filePath: string, items: PendingRestartNotification[])
| 939 | } |
| 940 | |
| 941 | function writePendingRestartNotifications(filePath: string, items: PendingRestartNotification[]) { |
| 942 | fs.mkdirSync(path.dirname(filePath), { recursive: true }); |
| 943 | fs.writeFileSync(filePath, `${JSON.stringify(items, null, 2)}\n`, 'utf8'); |
| 944 | } |
| 945 | |
| 946 | function printUsage() { |
| 947 | process.stdout.write([ |
no outgoing calls
no test coverage detected