@appium/execute-driver-plugin 3.0.17 → 3.0.18

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.
@@ -89,7 +89,7 @@ function coerceScriptResult(obj) {
89
89
  } catch (e) {
90
90
  log.warn(
91
91
  'Could not convert executeDriverScript to safe response!' +
92
- `Result was: ${JSON.stringify(obj)}. Will make it null`
92
+ `Result was: ${JSON.stringify(obj)}. Will make it null`,
93
93
  );
94
94
  return null;
95
95
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@appium/execute-driver-plugin",
3
- "version": "3.0.17",
3
+ "version": "3.0.18",
4
4
  "description": "Plugin for batching and executing driver commands with Appiums",
5
5
  "keywords": [
6
6
  "automation",
@@ -38,12 +38,12 @@
38
38
  "test:unit": "mocha \"./test/unit/**/*.spec.js\""
39
39
  },
40
40
  "dependencies": {
41
- "@types/bluebird": "3.5.38",
41
+ "@types/bluebird": "3.5.40",
42
42
  "bluebird": "3.7.2",
43
43
  "lodash": "4.17.21",
44
44
  "source-map-support": "0.5.21",
45
45
  "vm2": "3.9.19",
46
- "webdriverio": "8.15.4"
46
+ "webdriverio": "8.17.0"
47
47
  },
48
48
  "peerDependencies": {
49
49
  "appium": "^2.0.0-beta.35"
@@ -59,7 +59,7 @@
59
59
  "pluginName": "execute-driver",
60
60
  "mainClass": "ExecuteDriverPlugin"
61
61
  },
62
- "gitHead": "524447ee0510a1e2a0cf144100e0ce469f3659b0",
62
+ "gitHead": "475198e36b49c820786142ff6e9f5e799926c99b",
63
63
  "typedoc": {
64
64
  "entryPoint": "./lib/plugin.js"
65
65
  }
package/tsconfig.json CHANGED
@@ -1,7 +1,8 @@
1
1
  {
2
2
  "compilerOptions": {
3
3
  "outDir": "build",
4
- "checkJs": true
4
+ "checkJs": true,
5
+ "moduleResolution": "node10"
5
6
  },
6
7
  "extends": "@appium/tsconfig/tsconfig.plugin.json",
7
8
  "include": ["lib"]