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

create-wdio

Package Overview
Dependencies
Maintainers
1
Versions
32
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

create-wdio - npm Package Compare versions

Comparing version 8.4.4 to 8.4.5

12

build/index.js

@@ -90,8 +90,14 @@ import fs from 'node:fs/promises';

// check of the cli is installed globally
const output = execSync('npm ls -g', { encoding: 'utf-8' });
if (output.includes('@wdio/cli')) {
return true;
// wrap in try/catch as it can fail on Windows
try {
const output = execSync('npm ls -g', { encoding: 'utf-8' });
if (output.includes('@wdio/cli')) {
return true;
}
}
catch (err) {
return false;
}
return false;
}
}
{
"name": "create-wdio",
"version": "8.4.4",
"version": "8.4.5",
"description": "Install and setup a WebdriverIO project with all its dependencies in a single run",

@@ -41,19 +41,19 @@ "author": "Christian Bromann <mail@bromann.dev>",

"devDependencies": {
"@types/cross-spawn": "^6.0.2",
"@types/node": "^20.4.2",
"@types/semver": "^7.5.0",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"@vitest/coverage-v8": "^1.0.4",
"eslint": "^8.45.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-unicorn": "^49.0.0",
"@types/cross-spawn": "^6.0.6",
"@types/node": "^20.10.5",
"@types/semver": "^7.5.6",
"@typescript-eslint/eslint-plugin": "^6.16.0",
"@typescript-eslint/parser": "^6.16.0",
"@vitest/coverage-v8": "^1.1.0",
"eslint": "^8.56.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-unicorn": "^50.0.1",
"npm-run-all": "^4.1.5",
"release-it": "^17.0.0",
"typescript": "^5.1.6",
"vitest": "^1.0.4"
"release-it": "^17.0.1",
"typescript": "^5.3.3",
"vitest": "^1.1.0"
},
"dependencies": {
"chalk": "^5.3.0",
"commander": "^11.0.0",
"commander": "^11.1.0",
"cross-spawn": "^7.0.3",

@@ -60,0 +60,0 @@ "import-meta-resolve": "^4.0.0",

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