@wdio/cli 8.2.4 → 8.2.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/run.d.ts.map +1 -1
- package/build/run.js +2 -1
- package/package.json +4 -4
package/build/run.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"run.d.ts","sourceRoot":"","sources":["../src/run.ts"],"names":[],"mappings":"AA2BA,wBAA8B,GAAG,
|
|
1
|
+
{"version":3,"file":"run.d.ts","sourceRoot":"","sources":["../src/run.ts"],"names":[],"mappings":"AA2BA,wBAA8B,GAAG,0BAgEhC"}
|
package/build/run.js
CHANGED
|
@@ -5,7 +5,7 @@ import yargs from 'yargs';
|
|
|
5
5
|
import { hideBin } from 'yargs/helpers';
|
|
6
6
|
import { commands } from './commands/index.js';
|
|
7
7
|
import { handler, cmdArgs } from './commands/run.js';
|
|
8
|
-
import { CLI_EPILOGUE } from './constants.js';
|
|
8
|
+
import { CLI_EPILOGUE, pkg } from './constants.js';
|
|
9
9
|
const __dirname = path.dirname(url.fileURLToPath(import.meta.url));
|
|
10
10
|
const DEFAULT_CONFIG_FILENAME = 'wdio.conf.js';
|
|
11
11
|
const DESCRIPTION = [
|
|
@@ -31,6 +31,7 @@ export default async function run() {
|
|
|
31
31
|
.example('wdio install reporter spec', 'Install @wdio/spec-reporter')
|
|
32
32
|
.example('wdio repl chrome -u <SAUCE_USERNAME> -k <SAUCE_ACCESS_KEY>', 'Run repl in Sauce Labs cloud')
|
|
33
33
|
.updateStrings({ 'Commands:': `${DESCRIPTION.join('\n')}\n\nCommands:` })
|
|
34
|
+
.version(pkg.version)
|
|
34
35
|
.epilogue(CLI_EPILOGUE);
|
|
35
36
|
/**
|
|
36
37
|
* parse CLI arguments according to what run expects, without this adding
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wdio/cli",
|
|
3
|
-
"version": "8.2.
|
|
3
|
+
"version": "8.2.6",
|
|
4
4
|
"description": "WebdriverIO testrunner command line interface",
|
|
5
5
|
"author": "Christian Bromann <mail@bromann.dev>",
|
|
6
6
|
"homepage": "https://github.com/webdriverio/webdriverio/tree/main/packages/wdio-cli",
|
|
@@ -35,7 +35,7 @@
|
|
|
35
35
|
"dependencies": {
|
|
36
36
|
"@types/node": "^18.0.0",
|
|
37
37
|
"@wdio/config": "8.2.3",
|
|
38
|
-
"@wdio/globals": "8.2.
|
|
38
|
+
"@wdio/globals": "8.2.6",
|
|
39
39
|
"@wdio/logger": "8.1.0",
|
|
40
40
|
"@wdio/protocols": "8.2.0",
|
|
41
41
|
"@wdio/types": "8.1.2",
|
|
@@ -54,7 +54,7 @@
|
|
|
54
54
|
"mkdirp": "^2.0.0",
|
|
55
55
|
"read-pkg-up": "9.1.0",
|
|
56
56
|
"recursive-readdir": "^2.2.2",
|
|
57
|
-
"webdriverio": "8.2.
|
|
57
|
+
"webdriverio": "8.2.6",
|
|
58
58
|
"yargs": "^17.5.1",
|
|
59
59
|
"yarn-install": "^1.0.0"
|
|
60
60
|
},
|
|
@@ -71,5 +71,5 @@
|
|
|
71
71
|
"publishConfig": {
|
|
72
72
|
"access": "public"
|
|
73
73
|
},
|
|
74
|
-
"gitHead": "
|
|
74
|
+
"gitHead": "82c01b9fcf03c477505fd3afed777ce7b227567b"
|
|
75
75
|
}
|