@wdio/shared-store-service 8.0.0-alpha.331 → 8.0.0-alpha.411

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/launcher.js CHANGED
@@ -3,6 +3,7 @@ import { setPort } from './client.js';
3
3
  const log = logger('@wdio/shared-store-service');
4
4
  let server;
5
5
  export default class SharedStoreLauncher {
6
+ _app;
6
7
  async onPrepare(_, capabilities) {
7
8
  /**
8
9
  * import during runtime to avoid unnecessary dependency loading
package/build/service.js CHANGED
@@ -1,5 +1,6 @@
1
1
  import { getValue, setValue, setPort } from './client.js';
2
2
  export default class SharedStoreService {
3
+ _browser;
3
4
  constructor(_, caps) {
4
5
  setPort(caps['wdio:sharedStoreServicePort']);
5
6
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wdio/shared-store-service",
3
- "version": "8.0.0-alpha.331+78ec9a352",
3
+ "version": "8.0.0-alpha.411+2d3189eaf",
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",
@@ -28,14 +28,14 @@
28
28
  "typeScriptVersion": "3.8.3",
29
29
  "dependencies": {
30
30
  "@polka/parse": "^1.0.0-next.0",
31
- "@wdio/logger": "8.0.0-alpha.331+78ec9a352",
32
- "@wdio/types": "8.0.0-alpha.331+78ec9a352",
31
+ "@wdio/logger": "8.0.0-alpha.411+2d3189eaf",
32
+ "@wdio/types": "8.0.0-alpha.411+2d3189eaf",
33
33
  "got": "^12.1.0",
34
34
  "polka": "^0.5.2",
35
- "webdriverio": "8.0.0-alpha.331+78ec9a352"
35
+ "webdriverio": "8.0.0-alpha.411+2d3189eaf"
36
36
  },
37
37
  "publishConfig": {
38
38
  "access": "public"
39
39
  },
40
- "gitHead": "78ec9a35262f7d5ff4001cf777553f0a3c173d6d"
40
+ "gitHead": "2d3189eaf8779f61699c1377f44f9841ed8a72c7"
41
41
  }