Skip to content

Commit

Permalink
chore: npm run format
Browse files Browse the repository at this point in the history
  • Loading branch information
trivikr committed Nov 11, 2023
1 parent 8d5ae91 commit b307025
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tasks/publish-to-aws.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
const { S3 } = require("@aws-sdk/client-s3");
const { S3 } = require('@aws-sdk/client-s3');

const git = require('./util/git');
const { createRegisterAsyncTaskFn } = require('./util/async-grunt-task');
Expand Down Expand Up @@ -84,8 +84,8 @@ function s3PutObject(uploadParams) {
const s3 = new S3({
credentials: {
accessKeyId: process.env.S3_ACCESS_KEY_ID,
secretAccessKey: process.env.S3_SECRET_ACCESS_KEY
}
secretAccessKey: process.env.S3_SECRET_ACCESS_KEY,
},
});
return new Promise((resolve, reject) => {
s3.putObject(uploadParams, (err) => {
Expand Down

0 comments on commit b307025

Please sign in to comment.