Skip to content

Commit b19200c

Browse files
committed
fix: remove yarn config
1 parent d20e8ff commit b19200c

1 file changed

Lines changed: 0 additions & 2 deletions

File tree

ts-parser/src/utils/monorepo.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,12 +53,10 @@ export class MonorepoUtils {
5353
static isMonorepo(rootPath: string): boolean {
5454
const edenConfigPath = path.join(rootPath, 'eden.monorepo.json');
5555
const pnpmWorkspacePath = path.join(rootPath, 'pnpm-workspace.yaml');
56-
const yarnWorkspacePath = path.join(rootPath, 'yarn.lock');
5756
const lernaConfigPath = path.join(rootPath, 'lerna.json');
5857

5958
return fs.existsSync(edenConfigPath) ||
6059
fs.existsSync(pnpmWorkspacePath) ||
61-
fs.existsSync(yarnWorkspacePath) ||
6260
fs.existsSync(lernaConfigPath);
6361
}
6462

0 commit comments

Comments
 (0)