@abtnode/core 1.16.6-beta-8be2fe37 → 1.16.6-beta-4562aa60
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/lib/util/sysinfo.js +9 -7
- package/package.json +28 -28
package/lib/util/sysinfo.js
CHANGED
|
@@ -31,13 +31,15 @@ const getSysInfo = async () => {
|
|
|
31
31
|
},
|
|
32
32
|
mem: info.mem,
|
|
33
33
|
os: info.osInfo,
|
|
34
|
-
disks: drives
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
34
|
+
disks: drives
|
|
35
|
+
.map((x) => ({
|
|
36
|
+
device: x.fs,
|
|
37
|
+
mountPoint: x.mount,
|
|
38
|
+
total: x.size,
|
|
39
|
+
used: x.used,
|
|
40
|
+
free: x.size - x.used,
|
|
41
|
+
}))
|
|
42
|
+
.filter((x) => x.total > 0),
|
|
41
43
|
};
|
|
42
44
|
};
|
|
43
45
|
|
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"publishConfig": {
|
|
4
4
|
"access": "public"
|
|
5
5
|
},
|
|
6
|
-
"version": "1.16.6-beta-
|
|
6
|
+
"version": "1.16.6-beta-4562aa60",
|
|
7
7
|
"description": "",
|
|
8
8
|
"main": "lib/index.js",
|
|
9
9
|
"files": [
|
|
@@ -19,34 +19,34 @@
|
|
|
19
19
|
"author": "wangshijun <wangshijun2010@gmail.com> (http://github.com/wangshijun)",
|
|
20
20
|
"license": "MIT",
|
|
21
21
|
"dependencies": {
|
|
22
|
-
"@abtnode/auth": "1.16.6-beta-
|
|
23
|
-
"@abtnode/certificate-manager": "1.16.6-beta-
|
|
24
|
-
"@abtnode/constant": "1.16.6-beta-
|
|
25
|
-
"@abtnode/cron": "1.16.6-beta-
|
|
26
|
-
"@abtnode/db": "1.16.6-beta-
|
|
27
|
-
"@abtnode/logger": "1.16.6-beta-
|
|
28
|
-
"@abtnode/queue": "1.16.6-beta-
|
|
29
|
-
"@abtnode/rbac": "1.16.6-beta-
|
|
30
|
-
"@abtnode/router-provider": "1.16.6-beta-
|
|
31
|
-
"@abtnode/static-server": "1.16.6-beta-
|
|
32
|
-
"@abtnode/timemachine": "1.16.6-beta-
|
|
33
|
-
"@abtnode/util": "1.16.6-beta-
|
|
34
|
-
"@arcblock/did": "1.18.
|
|
22
|
+
"@abtnode/auth": "1.16.6-beta-4562aa60",
|
|
23
|
+
"@abtnode/certificate-manager": "1.16.6-beta-4562aa60",
|
|
24
|
+
"@abtnode/constant": "1.16.6-beta-4562aa60",
|
|
25
|
+
"@abtnode/cron": "1.16.6-beta-4562aa60",
|
|
26
|
+
"@abtnode/db": "1.16.6-beta-4562aa60",
|
|
27
|
+
"@abtnode/logger": "1.16.6-beta-4562aa60",
|
|
28
|
+
"@abtnode/queue": "1.16.6-beta-4562aa60",
|
|
29
|
+
"@abtnode/rbac": "1.16.6-beta-4562aa60",
|
|
30
|
+
"@abtnode/router-provider": "1.16.6-beta-4562aa60",
|
|
31
|
+
"@abtnode/static-server": "1.16.6-beta-4562aa60",
|
|
32
|
+
"@abtnode/timemachine": "1.16.6-beta-4562aa60",
|
|
33
|
+
"@abtnode/util": "1.16.6-beta-4562aa60",
|
|
34
|
+
"@arcblock/did": "1.18.72",
|
|
35
35
|
"@arcblock/did-motif": "^1.1.10",
|
|
36
|
-
"@arcblock/did-util": "1.18.
|
|
37
|
-
"@arcblock/event-hub": "1.18.
|
|
38
|
-
"@arcblock/jwt": "^1.18.
|
|
36
|
+
"@arcblock/did-util": "1.18.72",
|
|
37
|
+
"@arcblock/event-hub": "1.18.72",
|
|
38
|
+
"@arcblock/jwt": "^1.18.72",
|
|
39
39
|
"@arcblock/pm2-events": "^0.0.5",
|
|
40
|
-
"@arcblock/vc": "1.18.
|
|
41
|
-
"@blocklet/constant": "1.16.6-beta-
|
|
42
|
-
"@blocklet/meta": "1.16.6-beta-
|
|
43
|
-
"@blocklet/sdk": "1.16.6-beta-
|
|
44
|
-
"@did-space/client": "^0.2.
|
|
40
|
+
"@arcblock/vc": "1.18.72",
|
|
41
|
+
"@blocklet/constant": "1.16.6-beta-4562aa60",
|
|
42
|
+
"@blocklet/meta": "1.16.6-beta-4562aa60",
|
|
43
|
+
"@blocklet/sdk": "1.16.6-beta-4562aa60",
|
|
44
|
+
"@did-space/client": "^0.2.77",
|
|
45
45
|
"@fidm/x509": "^1.2.1",
|
|
46
|
-
"@ocap/client": "1.18.
|
|
47
|
-
"@ocap/mcrypto": "1.18.
|
|
48
|
-
"@ocap/util": "1.18.
|
|
49
|
-
"@ocap/wallet": "1.18.
|
|
46
|
+
"@ocap/client": "1.18.72",
|
|
47
|
+
"@ocap/mcrypto": "1.18.72",
|
|
48
|
+
"@ocap/util": "1.18.72",
|
|
49
|
+
"@ocap/wallet": "1.18.72",
|
|
50
50
|
"@slack/webhook": "^5.0.4",
|
|
51
51
|
"archiver": "^5.3.1",
|
|
52
52
|
"axios": "^0.27.2",
|
|
@@ -78,7 +78,7 @@
|
|
|
78
78
|
"ssri": "^8.0.1",
|
|
79
79
|
"stream-throttle": "^0.1.3",
|
|
80
80
|
"stream-to-promise": "^3.0.0",
|
|
81
|
-
"systeminformation": "^5.12
|
|
81
|
+
"systeminformation": "^5.17.12",
|
|
82
82
|
"tar": "^6.1.11",
|
|
83
83
|
"transliteration": "^2.3.5",
|
|
84
84
|
"ua-parser-js": "^1.0.2",
|
|
@@ -93,5 +93,5 @@
|
|
|
93
93
|
"express": "^4.18.2",
|
|
94
94
|
"jest": "^27.5.1"
|
|
95
95
|
},
|
|
96
|
-
"gitHead": "
|
|
96
|
+
"gitHead": "e49856099ffc3c16eda77480a7ad93b2e9760764"
|
|
97
97
|
}
|