We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d17397f commit cbfd660Copy full SHA for cbfd660
package.json
@@ -19,6 +19,7 @@
19
"prepublishOnly": "node scripts/build.js --no-cache"
20
},
21
"devDependencies": {
22
+ "@aws-sdk/client-s3": "^3.787.0",
23
"@azure/cosmos": "^3.17.3",
24
"@bugsnag/js": "^7.21.0",
25
"@ffmpeg-installer/ffmpeg": "^1.0.17",
@@ -31,7 +32,6 @@
31
32
"apollo-server-express": "^2.2.2",
33
"arg": "^5.0.2",
34
"auth0": "^2.14.0",
- "aws-sdk": "^2.1448.0",
35
"axios": "^1.7.7",
36
"azure-storage": "^2.10.2",
37
"browserify-middleware": "^8.1.1",
test/integration/aws-sdk.js
@@ -1,3 +1,3 @@
1
-const aws = require('aws-sdk');
+const { S3 } = require('@aws-sdk/client-s3');
2
3
-new aws.S3();
+new S3();
0 commit comments