From 0f3c27f3f6a3acc3b58b403c01934301171accbf Mon Sep 17 00:00:00 2001 From: Miles Ziemer <45497130+milesziemer@users.noreply.github.com> Date: Thu, 6 Jul 2023 11:11:37 -0400 Subject: [PATCH] fix(hash-blob-browser): add back missing dep (#4932) Adds back the chunked-blob-reader-native dependency. It was removed in https://github.com/aws/aws-sdk-js-v3/pull/4571 because it wasn't being used in the TS code anywhere, but it is depended on in the package.json. There will be an equivalent PR in the smithy-typescript repo. --- packages/hash-blob-browser/package.json | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/hash-blob-browser/package.json b/packages/hash-blob-browser/package.json index c3a586e49f0f6..4f277753311ad 100644 --- a/packages/hash-blob-browser/package.json +++ b/packages/hash-blob-browser/package.json @@ -21,6 +21,7 @@ "license": "Apache-2.0", "dependencies": { "@aws-sdk/chunked-blob-reader": "*", + "@aws-sdk/chunked-blob-reader-native": "*", "@aws-sdk/types": "*", "tslib": "^2.5.0" },