@devicefarmer/adbkit 2.11.2 → 2.11.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.
@@ -7,7 +7,7 @@ blocks:
7
7
  - name: NPM publish
8
8
  commands:
9
9
  - checkout
10
- - sem-version node 12
10
+ - sem-version node 20
11
11
  - cache restore
12
12
  - npm install
13
13
  - npm publish --access public
@@ -16,4 +16,4 @@ blocks:
16
16
  agent:
17
17
  machine:
18
18
  type: e1-standard-2
19
- os_image: ubuntu1804
19
+ os_image: ubuntu2004
@@ -3,7 +3,7 @@ name: NPM Test
3
3
  agent:
4
4
  machine:
5
5
  type: e1-standard-2
6
- os_image: ubuntu1804
6
+ os_image: ubuntu2004
7
7
  blocks:
8
8
  - name: Test
9
9
  task:
@@ -14,7 +14,7 @@ blocks:
14
14
  - 'wget https://dl.google.com/android/repository/platform-tools-latest-linux.zip -O ~/platform-tools-latest-linux.zip'
15
15
  - unzip ~/platform-tools-latest-linux.zip -d ~
16
16
  - 'export PATH=$PATH:~/platform-tools'
17
- - sem-version node 12
17
+ - sem-version node 20
18
18
  - cache restore
19
19
  - npm install
20
20
  - cache store
@@ -44,7 +44,7 @@ Stats = (function(superClass) {
44
44
  function Stats(mode, size, mtime) {
45
45
  this.mode = mode;
46
46
  this.size = size;
47
- this.mtime = new Date(mtime * 1000);
47
+ this.mtimeMs = new Date(mtime * 1000);
48
48
  }
49
49
 
50
50
  return Stats;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@devicefarmer/adbkit",
3
- "version": "2.11.2",
3
+ "version": "2.11.4",
4
4
  "description": "A pure Node.js client for the Android Debug Bridge.",
5
5
  "keywords": [
6
6
  "adb",
@@ -37,7 +37,7 @@
37
37
  "bluebird": "~2.9.24",
38
38
  "commander": "^2.3.0",
39
39
  "debug": "~2.6.3",
40
- "node-forge": "^0.9.1",
40
+ "node-forge": "^0.10.0",
41
41
  "split": "~0.3.3"
42
42
  },
43
43
  "devDependencies": {