oclif 4.3.3 → 4.3.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/version-indexes.js +5 -1
- package/oclif.manifest.json +1 -1
- package/package.json +2 -2
package/lib/version-indexes.js
CHANGED
|
@@ -53,7 +53,11 @@ const appendToIndex = async (input) => {
|
|
|
53
53
|
Bucket: s3Config.bucket,
|
|
54
54
|
Key: key,
|
|
55
55
|
});
|
|
56
|
-
|
|
56
|
+
// @ts-expect-error because StreamingBlobTypes doesn't have transformToString
|
|
57
|
+
// but it's expected to be there according to the docs
|
|
58
|
+
// https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-smithy-types/TypeAlias/StreamingBlobPayloadOutputTypes/
|
|
59
|
+
// https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-smithy-types/Interface/SdkStreamMixin/
|
|
60
|
+
existing = JSON.parse(await Body?.transformToString());
|
|
57
61
|
debug('appending to existing index file');
|
|
58
62
|
}
|
|
59
63
|
catch (error) {
|
package/oclif.manifest.json
CHANGED
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "oclif",
|
|
3
3
|
"description": "oclif: create your own CLI",
|
|
4
|
-
"version": "4.3.
|
|
4
|
+
"version": "4.3.5",
|
|
5
5
|
"author": "Salesforce",
|
|
6
6
|
"bin": {
|
|
7
7
|
"oclif": "bin/run.js"
|
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
"dependencies": {
|
|
11
11
|
"@aws-sdk/client-cloudfront": "^3.468.0",
|
|
12
12
|
"@aws-sdk/client-s3": "^3.490.0",
|
|
13
|
-
"@oclif/core": "^3.
|
|
13
|
+
"@oclif/core": "^3.18.1",
|
|
14
14
|
"@oclif/plugin-help": "^6.0.9",
|
|
15
15
|
"@oclif/plugin-not-found": "^3.0.8",
|
|
16
16
|
"@oclif/plugin-warn-if-update-available": "^3.0.9",
|