Update get-monorepo-type.ts

Fixes issues when no package.json exists at the root of a repo
This commit is contained in:
Aaron Reisman 2022-05-18 20:48:30 -07:00 committed by GitHub
parent 82696f1947
commit 0d21b966c9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -27,6 +27,8 @@ export const getMonorepoType = (): MonorepoType => {
if (monorepoType) {
return monorepoType;
}
if (!fs.existsSync(path.join(projectRootPath, 'package.json'))) return undefined;
const packageJson = fs.readJsonSync(path.join(projectRootPath, 'package.json')) as PackageJson;