sst 2.48.4 → 2.48.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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "sideEffects": false,
3
3
  "name": "sst",
4
- "version": "2.48.4",
4
+ "version": "2.48.5",
5
5
  "bin": {
6
6
  "sst": "cli/sst.js"
7
7
  },
package/package.json.bak CHANGED
@@ -5,7 +5,7 @@
5
5
  },
6
6
  "sideEffects": false,
7
7
  "name": "sst",
8
- "version": "2.48.4",
8
+ "version": "2.48.5",
9
9
  "bin": {
10
10
  "sst": "cli/sst.js"
11
11
  },
@@ -132571,7 +132571,7 @@ async function upload(bucket, key) {
132571
132571
  new import_client_s3.PutObjectCommand({
132572
132572
  Key: key,
132573
132573
  Bucket: bucket,
132574
- Body: fs.createReadStream(zipPath)
132574
+ Body: fs.readFileSync(zipPath)
132575
132575
  })
132576
132576
  );
132577
132577
  }