appium-adb 14.0.3 → 14.0.4
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/CHANGELOG.md +6 -0
- package/build/lib/adb.d.ts +3 -11
- package/build/lib/adb.d.ts.map +1 -1
- package/build/lib/helpers.d.ts +29 -67
- package/build/lib/helpers.d.ts.map +1 -1
- package/build/lib/helpers.js +65 -98
- package/build/lib/helpers.js.map +1 -1
- package/build/lib/logger.d.ts +1 -1
- package/build/lib/logger.d.ts.map +1 -1
- package/build/lib/logger.js.map +1 -1
- package/build/lib/tools/system-calls.d.ts +157 -267
- package/build/lib/tools/system-calls.d.ts.map +1 -1
- package/build/lib/tools/system-calls.js +259 -312
- package/build/lib/tools/system-calls.js.map +1 -1
- package/lib/{helpers.js → helpers.ts} +113 -117
- package/lib/{logger.js → logger.ts} +1 -0
- package/lib/tools/{system-calls.js → system-calls.ts} +372 -407
- package/package.json +3 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "appium-adb",
|
|
3
|
-
"version": "14.0.
|
|
3
|
+
"version": "14.0.4",
|
|
4
4
|
"description": "Android Debug Bridge interface",
|
|
5
5
|
"main": "./build/index.js",
|
|
6
6
|
"scripts": {
|
|
@@ -12,8 +12,8 @@
|
|
|
12
12
|
"prepare": "npm run rebuild",
|
|
13
13
|
"rebuild": "npm run clean && npm run build",
|
|
14
14
|
"format": "prettier -w ./lib",
|
|
15
|
-
"test": "mocha --exit --timeout 1m \"./test/unit/**/*-specs.
|
|
16
|
-
"e2e-test": "mocha --exit --timeout 5m \"./test/functional/**/*-specs.
|
|
15
|
+
"test": "mocha --exit --timeout 1m \"./test/unit/**/*-specs.ts\"",
|
|
16
|
+
"e2e-test": "mocha --exit --timeout 5m \"./test/functional/**/*-specs.ts\""
|
|
17
17
|
},
|
|
18
18
|
"repository": {
|
|
19
19
|
"type": "git",
|