We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2d3c1de commit 7fb886dCopy full SHA for 7fb886d
tasks/publish-to-aws.js
@@ -1,5 +1,3 @@
1
-const AWS = require('aws-sdk');
2
-
3
const {
4
S3
5
} = require("@aws-sdk/client-s3");
@@ -48,11 +46,6 @@ module.exports = function (grunt) {
48
46
if (!bucket || !key || !secret) {
49
47
throw new Error('Missing S3 config values');
50
}
51
52
- // JS SDK v3 does not support global configuration.
53
- // Codemod has attempted to pass values to each service client in this file.
54
- // You may need to update clients outside of this file, if they use global config.
55
- AWS.config.update({ accessKeyId: key, secretAccessKey: secret });
56
57
58
async function publish(suffixes) {
0 commit comments