Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

nightwatch

Package Overview
Dependencies
Maintainers
1
Versions
355
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

nightwatch - npm Package Compare versions

Comparing version 0.3.6 to 0.3.7

2

package.json
{
"name": "nightwatch",
"description": "A node.js bindings implementation for selenium 2.0/webdriver",
"version": "0.3.6",
"version": "0.3.7",
"author": {

@@ -6,0 +6,0 @@ "name": "Andrei Rusu",

@@ -171,3 +171,3 @@ /**

var modules = list.filter(function (filePath) {
var filename = filePath.split('/').slice(-1)[0];
var filename = filePath.split(path.sep).slice(-1)[0];
return opts.filter ?

@@ -200,7 +200,7 @@ minimatch(filename, opts.filter) :

list.forEach(function(file) {
file = [dir, file].join('/');
file = [dir, file].join(path.sep);
fs.stat(file, function(err, stat) {
if (stat && stat.isDirectory()) {
var dirName = file.split('/').slice(-1)[0];
var dirName = file.split(path.sep).slice(-1)[0];
if (opts.skipgroup && opts.skipgroup.indexOf(dirName) > -1) {

@@ -207,0 +207,0 @@ pending = pending-1;

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