@nxtedition/lib 19.0.31 → 19.0.32

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/s3.js +1 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nxtedition/lib",
3
- "version": "19.0.31",
3
+ "version": "19.0.32",
4
4
  "license": "MIT",
5
5
  "author": "Robert Nagy <robert.nagy@boffins.se>",
6
6
  "type": "module",
package/s3.js CHANGED
@@ -187,6 +187,7 @@ export async function upload({
187
187
  })
188
188
 
189
189
  const promise = queue.add(() => part.end(s3, { Bucket, Key, UploadId: uploadId }))
190
+ promise.catch(() => {})
190
191
  promises.push(promise)
191
192
  }
192
193
  }