* Updates the `process.stdin` property. Direct assignments will not work * since NodeJS declares `stdin` using a property accessor.
(newStdin: NodeJS.ReadableStream)
| 53 | * since NodeJS declares `stdin` using a property accessor. |
| 54 | */ |
| 55 | function updateStdinGetter(newStdin: NodeJS.ReadableStream) { |
| 56 | Object.defineProperty(process, 'stdin', {get: () => newStdin}); |
| 57 | } |
| 58 | |
| 59 | /** Invokes the build command handler. */ |
| 60 | async function invokePrecheck(stdin: ReleasePrecheckJsonStdin) { |
no outgoing calls
no test coverage detected