(readVersion: string, attemptedPath: string)
| 121 | ); |
| 122 | |
| 123 | export const nodeBinaryOutOfDate = (readVersion: string, attemptedPath: string) => |
| 124 | createUserError( |
| 125 | localize( |
| 126 | 'runtime.node.outdated', |
| 127 | 'The Node version in "{0}" is outdated (version {1}), we require at least Node 8.x.', |
| 128 | attemptedPath, |
| 129 | readVersion, |
| 130 | ), |
| 131 | ErrorCodes.NodeBinaryOutOfDate, |
| 132 | ); |
| 133 | |
| 134 | export const invalidHitCondition = (expression: string) => |
| 135 | createUserError( |
no test coverage detected