Skip to content

Commit

Permalink
build: await createBundles
Browse files Browse the repository at this point in the history
  • Loading branch information
turadg committed Jun 13, 2022
1 parent 7991e29 commit 9f49ec6
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion packages/governance/scripts/build-bundles.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@ const sourceToBundle = [
['../src/binaryVoteCounter.js', '../bundles/bundle-binaryVoteCounter.js'],
];

createBundles(sourceToBundle, dirname);
await createBundles(sourceToBundle, dirname);
2 changes: 1 addition & 1 deletion packages/spawner/scripts/build-bundles.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ const sourceToBundle = [
[`../src/vat-spawned.js`, `../bundles/bundle-spawn.js`],
];

createBundles(sourceToBundle, dirname);
await createBundles(sourceToBundle, dirname);
2 changes: 1 addition & 1 deletion packages/vats/scripts/build-bundles.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@ const sourceToBundle = [
[`../src/mintHolder.js`, `../bundles/bundle-mintHolder.js`],
];

createBundles(sourceToBundle, dirname);
await createBundles(sourceToBundle, dirname);
2 changes: 1 addition & 1 deletion packages/wallet/api/scripts/build-bundles.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ const dirname = url.fileURLToPath(new URL('.', import.meta.url));

const sourceToBundle = [[`../src/wallet.js`, `../bundles/bundle-wallet.js`]];

createBundles(sourceToBundle, dirname);
await createBundles(sourceToBundle, dirname);
2 changes: 1 addition & 1 deletion packages/zoe/scripts/build-bundles.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ const sourceToBundle = [
['../src/contractFacet/vatRoot.js', '../bundles/bundle-contractFacet.js'],
];

createBundles(sourceToBundle, dirname);
await createBundles(sourceToBundle, dirname);

0 comments on commit 9f49ec6

Please sign in to comment.