chore: fix format

This commit is contained in:
Ralph Khreish
2025-08-02 23:51:53 +03:00
parent 2c27aeda20
commit 565090257c

View File

@@ -15,7 +15,9 @@ function findRootDir(startDir) {
if (existsSync(join(currentDir, 'package.json'))) {
// Verify it's the root package.json by checking for expected fields
try {
const pkg = JSON.parse(readFileSync(join(currentDir, 'package.json'), 'utf8'));
const pkg = JSON.parse(
readFileSync(join(currentDir, 'package.json'), 'utf8')
);
if (pkg.name === 'task-master-ai' || pkg.repository) {
return currentDir;
}