Skip to content

Commit c249c91

Browse files
authored
Add parser export (#286)
1 parent 8dfb748 commit c249c91

File tree

4 files changed

+86
-85
lines changed

4 files changed

+86
-85
lines changed

index.ts

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
export { default } from './src/adb';
22
export { default as Adb } from './src/adb';
33

4+
export { default as Parser } from './src/adb/parser';
45
export { Callback } from './src/Callback';
56
export { ClientOptions } from './src/ClientOptions';
67
export { CpuStats, Loads } from './src/CpuStats';

package.json

+82-82
Original file line numberDiff line numberDiff line change
@@ -1,84 +1,84 @@
11
{
2-
"name": "@devicefarmer/adbkit",
3-
"version": "3.2.2",
4-
"description": "A Typescript client for the Android Debug Bridge.",
5-
"keywords": [
6-
"adb",
7-
"adbkit",
8-
"android",
9-
"logcat",
10-
"typescript",
11-
"monkey"
12-
],
13-
"bin": {
14-
"adbkit": "./bin/adbkit"
15-
},
16-
"bugs": {
17-
"url": "https://github.com/devicefarmer/adbkit/issues"
18-
},
19-
"license": "Apache-2.0",
20-
"author": {
21-
"name": "Device Farmer",
22-
"email": "[email protected]",
23-
"url": "https://devicefarmer.com/"
24-
},
25-
"contributors": [
26-
{
27-
"name": "uriel chemouni",
28-
"email": "[email protected]",
29-
"url": "https://urielch.github.io/urielch/"
30-
}
31-
],
32-
"main": "./dist/index.js",
33-
"types": "./dist/index.d.ts",
34-
"repository": {
35-
"type": "git",
36-
"url": "https://github.com/devicefarmer/adbkit.git"
37-
},
38-
"scripts": {
39-
"clean": "rimraf dist index.d.ts index.js",
40-
"keycode": "node tasks/keycode.js",
41-
"prepublish": "npm run clean && npm run compile && npm run test",
42-
"compile": "tsc -p .",
43-
"compile2": "tsc -p tsconfig-dist.json",
44-
"lint": "eslint ./ --ext .ts",
45-
"format": "eslint ./ --ext .ts --fix",
46-
"testJS": "mocha --reporter spec --colors dist/test/**/*.js",
47-
"test": "mocha -r ts-node/register --reporter spec --colors test/**/*.ts"
48-
},
49-
"dependencies": {
50-
"@devicefarmer/adbkit-logcat": "^2.1.2",
51-
"@devicefarmer/adbkit-monkey": "~1.2.0",
52-
"bluebird": "~3.7",
53-
"commander": "^9.1.0",
54-
"debug": "~4.3.1",
55-
"node-forge": "^1.3.1",
56-
"split": "~1.0.1"
57-
},
58-
"devDependencies": {
59-
"@types/debug": "^4.1.5",
60-
"@types/mocha": "^9.0.0",
61-
"@types/node": "^14.14.10",
62-
"@types/sinon-chai": "^3.2.5",
63-
"@types/bluebird": "^3.5.33",
64-
"@types/node-forge": "^1.0.1",
65-
"@typescript-eslint/eslint-plugin": "^4.9.1",
66-
"@typescript-eslint/parser": "^4.9.1",
67-
"bench": "~0.3.6",
68-
"chai": "~4.3.0",
69-
"eslint": "^8.12.0",
70-
"eslint-config-prettier": "^8.0.0",
71-
"eslint-plugin-prettier": "^4.0.0",
72-
"eslint-plugin-progress": "0.0.1",
73-
"mocha": "~8.3.1",
74-
"prettier": "^2.2.1",
75-
"rimraf": "^3.0.2",
76-
"sinon": "~13.0.1",
77-
"sinon-chai": "~3.7.0",
78-
"ts-node": "^10.4.0",
79-
"typescript": "^4.1.3"
80-
},
81-
"engines": {
82-
"node": ">= 0.10.4"
83-
}
2+
"name": "@devicefarmer/adbkit",
3+
"version": "3.2.3",
4+
"description": "A Typescript client for the Android Debug Bridge.",
5+
"keywords": [
6+
"adb",
7+
"adbkit",
8+
"android",
9+
"logcat",
10+
"typescript",
11+
"monkey"
12+
],
13+
"bin": {
14+
"adbkit": "./bin/adbkit"
15+
},
16+
"bugs": {
17+
"url": "https://github.com/devicefarmer/adbkit/issues"
18+
},
19+
"license": "Apache-2.0",
20+
"author": {
21+
"name": "Device Farmer",
22+
"email": "[email protected]",
23+
"url": "https://devicefarmer.com/"
24+
},
25+
"contributors": [
26+
{
27+
"name": "uriel chemouni",
28+
"email": "[email protected]",
29+
"url": "https://urielch.github.io/urielch/"
30+
}
31+
],
32+
"main": "./dist/index.js",
33+
"types": "./dist/index.d.ts",
34+
"repository": {
35+
"type": "git",
36+
"url": "https://github.com/devicefarmer/adbkit.git"
37+
},
38+
"scripts": {
39+
"clean": "rimraf dist index.d.ts index.js",
40+
"keycode": "node tasks/keycode.js",
41+
"prepublish": "npm run clean && npm run compile && npm run test",
42+
"compile": "tsc -p .",
43+
"compile2": "tsc -p tsconfig-dist.json",
44+
"lint": "eslint ./ --ext .ts",
45+
"format": "eslint ./ --ext .ts --fix",
46+
"testJS": "mocha --reporter spec --colors dist/test/**/*.js",
47+
"test": "mocha -r ts-node/register --reporter spec --colors test/**/*.ts"
48+
},
49+
"dependencies": {
50+
"@devicefarmer/adbkit-logcat": "^2.1.2",
51+
"@devicefarmer/adbkit-monkey": "~1.2.0",
52+
"bluebird": "~3.7",
53+
"commander": "^9.1.0",
54+
"debug": "~4.3.1",
55+
"node-forge": "^1.3.1",
56+
"split": "~1.0.1"
57+
},
58+
"devDependencies": {
59+
"@types/debug": "^4.1.5",
60+
"@types/mocha": "^9.0.0",
61+
"@types/node": "^14.14.10",
62+
"@types/sinon-chai": "^3.2.5",
63+
"@types/bluebird": "^3.5.33",
64+
"@types/node-forge": "^1.0.1",
65+
"@typescript-eslint/eslint-plugin": "^4.9.1",
66+
"@typescript-eslint/parser": "^4.9.1",
67+
"bench": "~0.3.6",
68+
"chai": "~4.3.0",
69+
"eslint": "^8.12.0",
70+
"eslint-config-prettier": "^8.0.0",
71+
"eslint-plugin-prettier": "^4.0.0",
72+
"eslint-plugin-progress": "0.0.1",
73+
"mocha": "~8.3.1",
74+
"prettier": "^2.2.1",
75+
"rimraf": "^3.0.2",
76+
"sinon": "~13.0.1",
77+
"sinon-chai": "~3.7.0",
78+
"ts-node": "^10.4.0",
79+
"typescript": "^4.1.3"
80+
},
81+
"engines": {
82+
"node": ">= 0.10.4"
83+
}
8484
}

src/adb/tcpusb/packet.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ export default class Packet {
6363
) {}
6464

6565
public verifyChecksum(): boolean {
66-
return this.check === Packet.checksum(this.data);
66+
return this.check === 0 ? true : this.check === Packet.checksum(this.data);
6767
}
6868

6969
public verifyMagic(): boolean {

test/mock/duplex.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ export default class MockDuplex extends Stream.Duplex {
2323
this.push(null);
2424
}
2525

26-
end(...args: any[]): this {
26+
end(cb?: () => void): this {
2727
this.causeEnd(); // In order to better emulate socket streams
28-
return (Stream.Duplex.prototype.end as any).apply(this, args);
28+
return (Stream.Duplex.prototype.end as any).apply(this, cb);
2929
}
3030
}

0 commit comments

Comments
 (0)