(projectPath: string)
| 460 | } |
| 461 | |
| 462 | function isUsingPagesDir(projectPath: string): boolean { |
| 463 | return ( |
| 464 | fs.existsSync(path.resolve(projectPath, 'pages')) || |
| 465 | fs.existsSync(path.resolve(projectPath, 'src/pages')) |
| 466 | ) |
| 467 | } |
| 468 | function isUsingAppDir(projectPath: string): boolean { |
| 469 | return ( |
| 470 | fs.existsSync(path.resolve(projectPath, 'app')) || |
no test coverage detected
searching dependent graphs…