chore: fix formatting

This commit is contained in:
Thijs Louisse 2022-09-15 09:49:59 +02:00 committed by Thijs Louisse
parent e9c6523f59
commit 2028277cd1

View file

@ -506,7 +506,9 @@ class InputDataService {
if (!pkgJson.exports) {
LogService.error(`No exports found in package.json of ${startPath}`);
}
const exposedAndInternalPaths = this.getPathsFromExportMap(pkgJson.exports, { packageRootPath: startPath });
const exposedAndInternalPaths = this.getPathsFromExportMap(pkgJson.exports, {
packageRootPath: startPath,
});
return exposedAndInternalPaths.map(p => p.internal);
}