( appPath: string, request: AppPathRequest, target: BuildTarget, durationMs?: number, )
| 16 | } |
| 17 | |
| 18 | export function buildAppPathSuccess( |
| 19 | appPath: string, |
| 20 | request: AppPathRequest, |
| 21 | target: BuildTarget, |
| 22 | durationMs?: number, |
| 23 | ): AppPathDomainResult { |
| 24 | return { |
| 25 | kind: 'app-path', |
| 26 | didError: false, |
| 27 | error: null, |
| 28 | request, |
| 29 | summary: { status: 'SUCCEEDED', target, ...(durationMs !== undefined ? { durationMs } : {}) }, |
| 30 | artifacts: { appPath }, |
| 31 | }; |
| 32 | } |
| 33 | |
| 34 | export function buildAppPathFailure( |
| 35 | rawMessage: string, |
no outgoing calls
no test coverage detected