Skip to content

Commit 1501b55

Browse files
committed
Fix formatting
1 parent 55647f7 commit 1501b55

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

src/project.ts

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -113,9 +113,12 @@ export async function readProject(
113113
});
114114
}),
115115
)
116-
).reduce((obj, pkg) => {
117-
return { ...obj, [pkg.validatedManifest.name]: pkg };
118-
}, {} as Record<string, Package>);
116+
).reduce(
117+
(obj, pkg) => {
118+
return { ...obj, [pkg.validatedManifest.name]: pkg };
119+
},
120+
{} as Record<string, Package>,
121+
);
119122

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

0 commit comments

Comments
 (0)