New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

create-wdio

Package Overview
Dependencies
Maintainers
0
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.8 to 8.4.9

2

build/index.js

@@ -24,3 +24,3 @@ import fs from 'node:fs/promises';

*/
const unsupportedNodeVersion = !semver.satisfies(process.version, '>=16');
const unsupportedNodeVersion = !semver.satisfies(process.version, '>=18.18.0');
if (unsupportedNodeVersion) {

@@ -27,0 +27,0 @@ console.log(chalk.yellow(UNSUPPORTED_NODE_VERSION));

{
"name": "create-wdio",
"version": "8.4.8",
"version": "8.4.9",
"description": "Install and setup a WebdriverIO project with all its dependencies in a single run",

@@ -37,4 +37,5 @@ "author": "Christian Bromann <mail@bromann.dev>",

"test:eslint": "eslint -c ./.eslintrc.cjs ./src/**/*.ts ./tests/**/*.ts",
"test:unit": "vitest --run",
"watch": "npm run compile -- --watch"
"test:unit": "vitest run",
"watch": "npm run compile -- --watch",
"watch:test": "vitest watch"
},

@@ -50,3 +51,3 @@ "devDependencies": {

"eslint-plugin-import": "^2.29.1",
"eslint-plugin-unicorn": "^55.0.0",
"eslint-plugin-unicorn": "^56.0.0",
"npm-run-all": "^4.1.5",

@@ -53,0 +54,0 @@ "release-it": "^17.6.0",

@@ -37,3 +37,3 @@ WebdriverIO Starter Toolkit [![Test Changes](https://github.com/webdriverio/create-wdio/actions/workflows/test.yml/badge.svg?branch=main&event=push)](https://github.com/webdriverio/create-wdio/actions/workflows/test.yml) [![PRs Welcome](https://img.shields.io/badge/PRs-welcome-green.svg)](https://github.com/webdriverio/create-wdio/blob/main/CONTRIBUTING.md)

_[`npm init <initializer>`](https://docs.npmjs.com/cli/v7/commands/npm-init) is available in npm 6+_
_[`npm init <initializer>`](https://docs.npmjs.com/cli/v10/commands/npm-init) is available in npm 6+_

@@ -40,0 +40,0 @@ #### yarn

@@ -10,15 +10,15 @@ /// <reference types="vitest" />

*/
exclude: [
'build', '.idea', '.git', '.cache',
'**/node_modules/**', '__mocks__'
],
exclude: ['build', '.idea', '.git', '.cache', '**/node_modules/**', '__mocks__'],
coverage: {
enabled: true,
exclude: ['**/build/**', '__mocks__', '**/*.test.ts'],
lines: 97,
functions: 80,
branches: 70,
statements: 97
}
}
include: ['src/**/*.ts'],
exclude: ['src/types.ts'],
thresholds: {
lines: 96,
functions: 80,
branches: 70,
statements: 96,
},
},
},
})
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