@wdio/repl 8.6.6 → 8.10.1

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.
Files changed (2) hide show
  1. package/build/index.js +2 -1
  2. package/package.json +3 -3
package/build/index.js CHANGED
@@ -31,7 +31,7 @@
31
31
  import vm from 'node:vm';
32
32
  import repl from 'node:repl';
33
33
  import { STATIC_RETURNS, INTRO_MESSAGE, DEFAULT_CONFIG } from './constants.js';
34
- export default class WDIORepl {
34
+ class WDIORepl {
35
35
  static introMessage = INTRO_MESSAGE;
36
36
  _config;
37
37
  _isCommandRunning = false;
@@ -112,3 +112,4 @@ export default class WDIORepl {
112
112
  });
113
113
  }
114
114
  }
115
+ export default WDIORepl;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wdio/repl",
3
- "version": "8.6.6",
3
+ "version": "8.10.1",
4
4
  "description": "A WDIO helper utility to provide a repl interface for WebdriverIO",
5
5
  "author": "Christian Bromann <mail@bromann.dev>",
6
6
  "homepage": "https://github.com/webdriverio/webdriverio/tree/main/packages/wdio-repl",
@@ -30,10 +30,10 @@
30
30
  },
31
31
  "typeScriptVersion": "3.8.3",
32
32
  "dependencies": {
33
- "@types/node": "^18.0.0"
33
+ "@types/node": "^20.1.0"
34
34
  },
35
35
  "publishConfig": {
36
36
  "access": "public"
37
37
  },
38
- "gitHead": "1bcac586be548a778d452e0b01c11e4097d743f4"
38
+ "gitHead": "0fc768bb7b2fe233877893260aec658facf6357f"
39
39
  }