Function
MISSING_REQUIRED_DEPENDENCY
(
defaultPlatform: string,
transport: string,
)
Source from the content-addressed store, hash-verified
| 1 | import { Logger } from '@nestjs/common'; |
| 2 | |
| 3 | const MISSING_REQUIRED_DEPENDENCY = ( |
| 4 | defaultPlatform: string, |
| 5 | transport: string, |
| 6 | ) => |
| 7 | `No driver (${transport}) has been selected. In order to take advantage of the default driver, please, ensure to install the "${defaultPlatform}" package ($ npm install ${defaultPlatform}).`; |
| 8 | |
| 9 | const logger = new Logger('PackageLoader'); |
| 10 | |
Tested by
no test coverage detected