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 8d5ae91 commit b307025Copy full SHA for b307025
tasks/publish-to-aws.js
@@ -1,4 +1,4 @@
1
-const { S3 } = require("@aws-sdk/client-s3");
+const { S3 } = require('@aws-sdk/client-s3');
2
3
const git = require('./util/git');
4
const { createRegisterAsyncTaskFn } = require('./util/async-grunt-task');
@@ -84,8 +84,8 @@ function s3PutObject(uploadParams) {
84
const s3 = new S3({
85
credentials: {
86
accessKeyId: process.env.S3_ACCESS_KEY_ID,
87
- secretAccessKey: process.env.S3_SECRET_ACCESS_KEY
88
- }
+ secretAccessKey: process.env.S3_SECRET_ACCESS_KEY,
+ },
89
});
90
return new Promise((resolve, reject) => {
91
s3.putObject(uploadParams, (err) => {
0 commit comments