Skip to content

Commit

Permalink
Remove pkarr, sodium-universal and add bencode to CJS bundling (#451)
Browse files Browse the repository at this point in the history
Signed-off-by: Frank Hinek <[email protected]>
  • Loading branch information
frankhinek authored Mar 19, 2024
1 parent b6ab3bb commit 6006c70
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/dids/build/cjs-bundle.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@ import packageJson from '../package.json' assert { type: 'json' };
// list of dependencies that _dont_ ship cjs
const includeList = new Set([
'@decentralized-identity/ion-sdk',
'pkarr'
'bencode'
]);

// create list of dependencies that we _do not_ want to include in our bundle
const excludeList = ['sodium-universal'];
const excludeList = [];
for (const dependency in packageJson.dependencies) {
if (includeList.has(dependency)) {
continue;
Expand Down

0 comments on commit 6006c70

Please sign in to comment.