Skip to content

Commit

Permalink
chore: lint
Browse files Browse the repository at this point in the history
  • Loading branch information
mhofman committed Sep 30, 2023
1 parent 8ca86ae commit 777d079
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions packages/internal/src/node/createBundles.js
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ export const createBundles = async (sourceBundles, dirname = '.') => {

export const extractProposalBundles = async (
dirProposalBuilder,
dirname = '.'
dirname = '.',
) => {
const toBundle = new Map();

Expand All @@ -68,20 +68,20 @@ export const extractProposalBundles = async (
const oldSrc = toBundle.get(bundlePath);
oldSrc === srcPath ||
Fail`${q(bundlePath)} already installed as ${q(
oldSrc
oldSrc,
)}, also given ${q(srcPath)}`;
}
toBundle.set(bundlePath, srcPath);
}
};
return proposalBuilder({ publishRef, install });
})
}),
);

return createBundlesFromAbsolute(
[...toBundle.entries()].map(([bundlePath, srcPath]) => [
srcPath,
bundlePath,
])
]),
);
};

0 comments on commit 777d079

Please sign in to comment.