@bobfrankston/iflow-direct 0.1.25 → 0.1.27

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/imap-native.js +1 -1
  2. package/package.json +1 -1
package/imap-native.js CHANGED
@@ -412,7 +412,7 @@ export class NativeImapClient {
412
412
  const chunk = uids.slice(i, i + chunkSize);
413
413
  const msgs = await this.fetchMessages(chunk.join(","), options);
414
414
  allMessages.push(...msgs);
415
- console.log(` [fetch] ${allMessages.length}/${uids.length} (chunk of ${chunk.length})`);
415
+ // console.log(` [fetch] ${allMessages.length}/${uids.length} (chunk of ${chunk.length})`);
416
416
  if (onChunk)
417
417
  onChunk(msgs);
418
418
  if (chunkSize < this.fetchChunkSizeMax)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bobfrankston/iflow-direct",
3
- "version": "0.1.25",
3
+ "version": "0.1.27",
4
4
  "description": "Direct IMAP client — transport-agnostic, no Node.js dependencies, browser-ready",
5
5
  "main": "index.js",
6
6
  "types": "index.ts",