mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-03 05:04:51 +08:00
Update get-monorepo-type.ts
Fixes issues when no package.json exists at the root of a repo
This commit is contained in:
parent
82696f1947
commit
0d21b966c9
@ -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;
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user