Skip to content

Commit

Permalink
Fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
Mrtenz committed Sep 23, 2024
1 parent 55647f7 commit 1501b55
Showing 1 changed file with 6 additions and 3 deletions.
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

0 comments on commit 1501b55

Please sign in to comment.