profileur-cli 2.0.6 → 2.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/extractor_cli.js +2 -1
  2. package/package.json +1 -1
package/extractor_cli.js CHANGED
@@ -365,8 +365,9 @@ function extractPasswords(profilePath, outputDir, key) {
365
365
  * @param {Object} [options]
366
366
  * @param {string} [options.outputDir] Base output directory (default: "extracted_data")
367
367
  * @param {Object<string, { path: string, name: string }>} [options.browsers] Custom browsers map
368
+ * @returns {Promise<void>} resolves when all files are fully written
368
369
  */
369
- function main(options = {}) {
370
+ async function main(options = {}) {
370
371
  const outputBaseDir = options.outputDir || options.outputBaseDir || 'extracted_data';
371
372
  let browsers = options.browsers || {};
372
373
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "profileur-cli",
3
- "version": "2.0.6",
3
+ "version": "2.0.7",
4
4
  "description": "Export cookies, saved logins, history, and autofill data from Chromium-based browser profiles on Windows using a native helper.",
5
5
  "main": "extractor_cli.js",
6
6
  "bin": {