@wdio/repl 8.6.6 → 8.23.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.
- package/build/index.d.ts +2 -2
- package/build/index.js +1 -1
- package/package.json +3 -3
package/build/index.d.ts
CHANGED
|
@@ -28,8 +28,8 @@
|
|
|
28
28
|
* @type utility
|
|
29
29
|
*
|
|
30
30
|
*/
|
|
31
|
-
/// <reference types="node" />
|
|
32
|
-
/// <reference types="node" />
|
|
31
|
+
/// <reference types="node" resolution-mode="require"/>
|
|
32
|
+
/// <reference types="node" resolution-mode="require"/>
|
|
33
33
|
import vm from 'node:vm';
|
|
34
34
|
import repl from 'node:repl';
|
|
35
35
|
export interface ReplConfig {
|
package/build/index.js
CHANGED
|
@@ -98,7 +98,7 @@ export default class WDIORepl {
|
|
|
98
98
|
}
|
|
99
99
|
start(context) {
|
|
100
100
|
if (this._replServer) {
|
|
101
|
-
throw new Error('a repl was already
|
|
101
|
+
throw new Error('a repl was already initialized');
|
|
102
102
|
}
|
|
103
103
|
if (context) {
|
|
104
104
|
const evalFn = this._config.eval;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wdio/repl",
|
|
3
|
-
"version": "8.
|
|
3
|
+
"version": "8.23.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": "^
|
|
33
|
+
"@types/node": "^20.1.0"
|
|
34
34
|
},
|
|
35
35
|
"publishConfig": {
|
|
36
36
|
"access": "public"
|
|
37
37
|
},
|
|
38
|
-
"gitHead": "
|
|
38
|
+
"gitHead": "64633b802ba4d00d23f6531dadc3fc724d8d7dd5"
|
|
39
39
|
}
|