@engine9-io/input-tools 1.4.0 → 1.4.1

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/file/S3.js +1 -1
  2. package/package.json +1 -1
package/file/S3.js CHANGED
@@ -192,7 +192,7 @@ Worker.prototype.listAll = async function ({ directory }) {
192
192
  ContinuationToken,
193
193
  // Delimiter: '/',
194
194
  });
195
- debug(`Sending command with ContinuationToken ${ContinuationToken}`);
195
+ debug(`Sending List command with prefix ${Prefix} with ContinuationToken ${ContinuationToken}`);
196
196
  // eslint-disable-next-line no-await-in-loop
197
197
  const result = await s3Client.send(command);
198
198
  const newFiles = (result.Contents?.map((d) => `s3://${Bucket}/${d.Key}`) || []);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@engine9-io/input-tools",
3
- "version": "1.4.0",
3
+ "version": "1.4.1",
4
4
  "description": "Tools for dealing with Engine9 inputs",
5
5
  "main": "index.js",
6
6
  "scripts": {