Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fix formatting
  • Loading branch information
Mrtenz committed Sep 23, 2024
commit 1501b550445f4e80c345da5815b19875b4a09c46
9 changes: 6 additions & 3 deletions src/project.ts
Original file line number Diff line number Diff line change
Expand Up @@ -113,9 +113,12 @@ export async function readProject(
});
}),
)
).reduce((obj, pkg) => {
return { ...obj, [pkg.validatedManifest.name]: pkg };
}, {} as Record<string, Package>);
).reduce(
(obj, pkg) => {
return { ...obj, [pkg.validatedManifest.name]: pkg };
},
{} as Record<string, Package>,
);

const isMonorepo = Object.keys(workspacePackages).length > 0;

Expand Down