(appDir: string, page: string)
| 1353 | } |
| 1354 | |
| 1355 | export function readNextBuildServerPageFile(appDir: string, page: string) { |
| 1356 | const pageFile = getPageFileFromPagesManifest(appDir, page) |
| 1357 | return readFileSync( |
| 1358 | path.join(appDir, getDistDir(), 'server', pageFile), |
| 1359 | 'utf8' |
| 1360 | ) |
| 1361 | } |
| 1362 | |
| 1363 | export function getClientBuildManifest(dir: string) { |
| 1364 | let buildId = readFileSync(path.join(dir, getDistDir(), 'BUILD_ID'), 'utf8') |
no test coverage detected