@wdio/appium-service 8.34.1 → 9.0.0-alpha.9
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/utils.js +2 -2
- package/package.json +9 -9
package/build/utils.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { basename, join, resolve } from 'node:path';
|
|
2
|
-
import {
|
|
2
|
+
import { kebabCase } from 'change-case';
|
|
3
3
|
const FILE_EXTENSION_REGEX = /\.[0-9a-z]+$/i;
|
|
4
4
|
/**
|
|
5
5
|
* Resolves the given path into a absolute path and appends the default filename as fallback when the provided path is a directory.
|
|
@@ -24,7 +24,7 @@ export function formatCliArgs(args) {
|
|
|
24
24
|
if ((typeof value === 'boolean' && !value) || value === null) {
|
|
25
25
|
continue;
|
|
26
26
|
}
|
|
27
|
-
cliArgs.push(`--${
|
|
27
|
+
cliArgs.push(`--${kebabCase(key)}`);
|
|
28
28
|
// Only non-boolean and non-null values are added as option values
|
|
29
29
|
if (typeof value !== 'boolean') {
|
|
30
30
|
cliArgs.push(sanitizeCliOptionValue(value));
|
package/package.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wdio/appium-service",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "9.0.0-alpha.9+9220932b7",
|
|
4
4
|
"description": "A WebdriverIO service to start & stop Appium Server",
|
|
5
5
|
"author": "Morten Bjerg Gregersen <morten@mogee.dk>",
|
|
6
6
|
"homepage": "https://github.com/webdriverio/webdriverio/tree/main/packages/wdio-appium-service",
|
|
7
7
|
"license": "MIT",
|
|
8
8
|
"engines": {
|
|
9
|
-
"node": "
|
|
9
|
+
"node": ">=18"
|
|
10
10
|
},
|
|
11
11
|
"repository": {
|
|
12
12
|
"type": "git",
|
|
@@ -33,17 +33,17 @@
|
|
|
33
33
|
},
|
|
34
34
|
"typeScriptVersion": "3.8.3",
|
|
35
35
|
"dependencies": {
|
|
36
|
-
"@wdio/config": "
|
|
37
|
-
"@wdio/logger": "
|
|
38
|
-
"@wdio/types": "
|
|
39
|
-
"@wdio/utils": "
|
|
36
|
+
"@wdio/config": "9.0.0-alpha.9+9220932b7",
|
|
37
|
+
"@wdio/logger": "9.0.0-alpha.9+9220932b7",
|
|
38
|
+
"@wdio/types": "9.0.0-alpha.9+9220932b7",
|
|
39
|
+
"@wdio/utils": "9.0.0-alpha.9+9220932b7",
|
|
40
|
+
"change-case": "^5.4.3",
|
|
40
41
|
"get-port": "^7.0.0",
|
|
41
42
|
"import-meta-resolve": "^4.0.0",
|
|
42
|
-
"
|
|
43
|
-
"webdriverio": "8.34.1"
|
|
43
|
+
"webdriverio": "9.0.0-alpha.9+9220932b7"
|
|
44
44
|
},
|
|
45
45
|
"publishConfig": {
|
|
46
46
|
"access": "public"
|
|
47
47
|
},
|
|
48
|
-
"gitHead": "
|
|
48
|
+
"gitHead": "9220932b7048d9b5b6c8397dda54842625be7ef2"
|
|
49
49
|
}
|