systeminformation 5.24.0 → 5.24.1
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/osinfo.js +2 -2
- package/package.json +1 -1
package/lib/osinfo.js
CHANGED
|
@@ -1033,7 +1033,7 @@ function versions(apps, callback) {
|
|
|
1033
1033
|
exec('bun -v', function (error, stdout) {
|
|
1034
1034
|
if (!error) {
|
|
1035
1035
|
const line = stdout.toString().split('\n')[0].trim();
|
|
1036
|
-
appsObj.versions.
|
|
1036
|
+
appsObj.versions.bun = line;
|
|
1037
1037
|
}
|
|
1038
1038
|
functionProcessed();
|
|
1039
1039
|
});
|
|
@@ -1044,7 +1044,7 @@ function versions(apps, callback) {
|
|
|
1044
1044
|
const line = stdout.toString().split('\n')[0].trim();
|
|
1045
1045
|
const parts = line.split(' ');
|
|
1046
1046
|
if (parts.length > 1) {
|
|
1047
|
-
appsObj.versions.
|
|
1047
|
+
appsObj.versions.deno = parts[1];
|
|
1048
1048
|
}
|
|
1049
1049
|
}
|
|
1050
1050
|
functionProcessed();
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "systeminformation",
|
|
3
|
-
"version": "5.24.
|
|
3
|
+
"version": "5.24.1",
|
|
4
4
|
"description": "Advanced, lightweight system and OS information library",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "Sebastian Hildebrandt <hildebrandt@plus-innovations.com> (https://plus-innovations.com)",
|