Skip to content

Commit d6231e1

Browse files
committed
WIP: Slightly less no-op
1 parent 3160c40 commit d6231e1

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

automation/webpack.prod.ts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -92,8 +92,9 @@ export default merge(common, {
9292
// corrupted. We have seen this in practice, I think due to AWS outage
9393
// issues? This helps protect against possible corruptions:
9494
const manifest = originalManifest.map((entry: any) => {
95-
// const asset = compilation.getAsset(entry.url);
96-
// const assetSource = asset.source.source();
95+
console.log(entry.url);
96+
const asset = compilation.getAsset(entry.url);
97+
const assetSource = asset.source.source();
9798
// entry.integrity = ssri.fromData(
9899
// assetSource instanceof ArrayBuffer
99100
// ? Buffer.from(assetSource) // Wasm!

0 commit comments

Comments
 (0)