(schemaPath: string)
| 108 | } |
| 109 | |
| 110 | export function printSchemaLoadedMessage(schemaPath: string) { |
| 111 | process.stderr.write(dim(`Prisma schema loaded from ${path.relative(process.cwd(), schemaPath)}.`) + '\n') |
| 112 | } |
| 113 | |
| 114 | async function readSchemaFromSingleFile(schemaPath: string): Promise<LookupResult> { |
| 115 | debug('Reading schema from single file', schemaPath) |
no test coverage detected