systeminformation 5.12.4 → 5.12.5

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.
Files changed (2) hide show
  1. package/lib/cpu.js +1 -0
  2. package/package.json +1 -1
package/lib/cpu.js CHANGED
@@ -645,6 +645,7 @@ function getCpu() {
645
645
  result.family = util.getValue(lines, 'machdep.cpu.family') || util.getValue(lines, 'hw.cpufamily');
646
646
  result.model = util.getValue(lines, 'machdep.cpu.model');
647
647
  result.stepping = util.getValue(lines, 'machdep.cpu.stepping') || util.getValue(lines, 'hw.cpusubfamily');
648
+ result.virtualization = true;
648
649
  const countProcessors = util.getValue(lines, 'hw.packages');
649
650
  const countCores = util.getValue(lines, 'hw.physicalcpu_max');
650
651
  const countThreads = util.getValue(lines, 'hw.ncpu');
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "systeminformation",
3
- "version": "5.12.4",
3
+ "version": "5.12.5",
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)",