create-wdio
Advanced tools
Comparing version 8.4.8 to 8.4.9
@@ -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, | ||
}, | ||
}, | ||
}, | ||
}) |
17648