mailpop 1.0.6 → 1.0.7

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/dist/logger.js +2 -1
  2. package/package.json +1 -1
package/dist/logger.js CHANGED
@@ -1,6 +1,7 @@
1
1
  import fs from 'fs/promises';
2
2
  import path from 'path';
3
- const LOGS_DIR = path.resolve('logs');
3
+ import os from 'os';
4
+ const LOGS_DIR = path.join(os.tmpdir(), 'mailpop-logs');
4
5
  // ANSI escape codes for styling
5
6
  const RESET = '\x1b[0m';
6
7
  const BOLD = '\x1b[1m';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mailpop",
3
- "version": "1.0.6",
3
+ "version": "1.0.7",
4
4
  "description": "Production-ready public contact email discovery tool from company websites.",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",