@appium/base-plugin 2.2.24 → 2.2.26
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 +14 -2
- package/package.json +5 -8
package/README.md
CHANGED
|
@@ -1,3 +1,15 @@
|
|
|
1
|
-
#
|
|
1
|
+
# @appium/base-plugin
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
> Base class for creating other Appium plugins
|
|
4
|
+
|
|
5
|
+
[](https://npmjs.org/package/@appium/base-plugin)
|
|
6
|
+
[](https://npmjs.org/package/@appium/base-plugin)
|
|
7
|
+
|
|
8
|
+
This is the parent class that all Appium plugins inherit from. This plugin should not be installed
|
|
9
|
+
directly as it does nothing on its own. Instead, you should extend this plugin when creating your
|
|
10
|
+
*own* Appium plugins. Check out the [Building Plugins](https://appium.io/docs/en/latest/developing/build-plugins/)
|
|
11
|
+
documentation for more details.
|
|
12
|
+
|
|
13
|
+
## License
|
|
14
|
+
|
|
15
|
+
Apache-2.0
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@appium/base-plugin",
|
|
3
|
-
"version": "2.2.
|
|
3
|
+
"version": "2.2.26",
|
|
4
4
|
"description": "The base plugin used to create Appium 2.0 plugins",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"automation",
|
|
@@ -40,8 +40,8 @@
|
|
|
40
40
|
"test:unit": "mocha \"./test/unit/**/*.spec.js\""
|
|
41
41
|
},
|
|
42
42
|
"dependencies": {
|
|
43
|
-
"@appium/base-driver": "^9.
|
|
44
|
-
"@appium/support": "^4.
|
|
43
|
+
"@appium/base-driver": "^9.5.0",
|
|
44
|
+
"@appium/support": "^4.2.0"
|
|
45
45
|
},
|
|
46
46
|
"engines": {
|
|
47
47
|
"node": "^14.17.0 || ^16.13.0 || >=18.0.0",
|
|
@@ -50,11 +50,8 @@
|
|
|
50
50
|
"publishConfig": {
|
|
51
51
|
"access": "public"
|
|
52
52
|
},
|
|
53
|
-
"gitHead": "
|
|
53
|
+
"gitHead": "76df4d600dcb7c867c37c3d7d302dc7fcc95ae09",
|
|
54
54
|
"tags": [
|
|
55
55
|
"appium"
|
|
56
|
-
]
|
|
57
|
-
"typedoc": {
|
|
58
|
-
"entryPoint": "./lib/plugin.js"
|
|
59
|
-
}
|
|
56
|
+
]
|
|
60
57
|
}
|