@wdio/shared-store-service 9.0.7 → 9.0.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/README.md +10 -0
- package/package.json +7 -7
package/README.md
CHANGED
|
@@ -105,3 +105,13 @@ export const config = {
|
|
|
105
105
|
// ...
|
|
106
106
|
};
|
|
107
107
|
```
|
|
108
|
+
|
|
109
|
+
If you are using typescript, make sure to add `@wdio/shared-store-service` to your `compilerOptions.types`:
|
|
110
|
+
|
|
111
|
+
```js
|
|
112
|
+
{
|
|
113
|
+
"compilerOptions": {
|
|
114
|
+
"types": ["node", "@wdio/globals/types", "@wdio/shared-store-service"],
|
|
115
|
+
}
|
|
116
|
+
}
|
|
117
|
+
```
|
package/package.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wdio/shared-store-service",
|
|
3
|
-
"version": "9.0.
|
|
3
|
+
"version": "9.0.9",
|
|
4
4
|
"description": "A WebdriverIO service to exchange data across processes",
|
|
5
5
|
"author": "Mykola Grybyk <mykola.grybyk@gmail.com>",
|
|
6
6
|
"homepage": "https://github.com/webdriverio/webdriverio/tree/main/packages/wdio-shared-store-service",
|
|
7
7
|
"license": "MIT",
|
|
8
8
|
"engines": {
|
|
9
|
-
"node": ">=18"
|
|
9
|
+
"node": ">=18.20.0"
|
|
10
10
|
},
|
|
11
11
|
"repository": {
|
|
12
12
|
"type": "git",
|
|
@@ -37,16 +37,16 @@
|
|
|
37
37
|
"typeScriptVersion": "3.8.3",
|
|
38
38
|
"dependencies": {
|
|
39
39
|
"@polka/parse": "^1.0.0-next.0",
|
|
40
|
-
"@wdio/logger": "9.0.
|
|
41
|
-
"@wdio/types": "9.0.
|
|
40
|
+
"@wdio/logger": "9.0.8",
|
|
41
|
+
"@wdio/types": "9.0.8",
|
|
42
42
|
"polka": "^0.5.2",
|
|
43
|
-
"webdriverio": "9.0.
|
|
43
|
+
"webdriverio": "9.0.9"
|
|
44
44
|
},
|
|
45
45
|
"devDependencies": {
|
|
46
|
-
"@wdio/globals": "9.0.
|
|
46
|
+
"@wdio/globals": "9.0.9"
|
|
47
47
|
},
|
|
48
48
|
"publishConfig": {
|
|
49
49
|
"access": "public"
|
|
50
50
|
},
|
|
51
|
-
"gitHead": "
|
|
51
|
+
"gitHead": "758ad309d3af97f05c322aae5466fa0a882a3599"
|
|
52
52
|
}
|