We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d20e8ff commit b19200cCopy full SHA for b19200c
1 file changed
ts-parser/src/utils/monorepo.ts
@@ -53,12 +53,10 @@ export class MonorepoUtils {
53
static isMonorepo(rootPath: string): boolean {
54
const edenConfigPath = path.join(rootPath, 'eden.monorepo.json');
55
const pnpmWorkspacePath = path.join(rootPath, 'pnpm-workspace.yaml');
56
- const yarnWorkspacePath = path.join(rootPath, 'yarn.lock');
57
const lernaConfigPath = path.join(rootPath, 'lerna.json');
58
59
return fs.existsSync(edenConfigPath) ||
60
fs.existsSync(pnpmWorkspacePath) ||
61
- fs.existsSync(yarnWorkspacePath) ||
62
fs.existsSync(lernaConfigPath);
63
}
64
0 commit comments