Socket
Socket
Sign inDemoInstall

firefox-profile

Package Overview
Dependencies
Maintainers
1
Versions
64
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

firefox-profile - npm Package Compare versions

Comparing version 4.6.0 to 4.7.0

.github/workflows/ci.yml

4

CHANGELOG.md

@@ -0,1 +1,5 @@

# 4.7.0
dump dependencies, add GHA. Thank you @frigante.
# 4.6.0

@@ -2,0 +6,0 @@

16

lib/firefox_profile.js

@@ -269,11 +269,7 @@ /**

this.shouldDeleteOnExit(false);
fs.exists(this.profileDir, function (doesExists) {
if (!doesExists) {
cb && cb();
return;
}
fs.remove(self.profileDir, function () {
cb && cb();
});
});
if (fs.existsSync(this.profileDir)) {
fs.removeSync(this.profileDir);
}
cb && cb();
};

@@ -614,3 +610,3 @@

if (tmpDir) {
await fs.remove(tmpDir);
fs.removeSync(tmpDir);
}

@@ -617,0 +613,0 @@

{
"name": "firefox-profile",
"version": "4.6.0",
"version": "4.7.0",
"description": "firefox profile for selenium WebDriverJs, admc/wd or any other node selenium driver that supports capabilities",

@@ -97,7 +97,10 @@ "main": "lib/firefox_profile",

"adm-zip": "~0.5.x",
"fs-extra": "~9.0.1",
"ini": "~2.0.0",
"minimist": "^1.2.5",
"xml2js": "^0.5.0"
"fs-extra": "^11.2.0",
"ini": "^4.1.3",
"minimist": "^1.2.8",
"xml2js": "^0.6.2"
},
"engines": {
"node": ">=18"
}
}
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc