2 Commits

Author SHA1 Message Date
16dfec29f4 2.0.7 2019-08-22 13:01:44 +02:00
10ab005343 fix(core): update 2019-08-22 13:01:44 +02:00
4 changed files with 4 additions and 5 deletions

2
package-lock.json generated
View File

@ -1,6 +1,6 @@
{
"name": "smartsystem",
"version": "2.0.6",
"version": "2.0.7",
"lockfileVersion": 1,
"requires": true,
"dependencies": {

View File

@ -1,6 +1,6 @@
{
"name": "@pushrocks/smartsystem",
"version": "2.0.6",
"version": "2.0.7",
"description": "interact with the system you are running on",
"main": "dist/index.js",
"typings": "dist/index.d.ts",

View File

@ -9,7 +9,7 @@ tap.test('should create a smartsystem instance', async tools => {
});
tap.test('should state the operating system', async () => {
expect(smartsystemInstance.cpuCount);
expect(smartsystemInstance.cpus.length).to.be.greaterThan(0);
});
tap.start();

View File

@ -2,6 +2,5 @@ import * as plugins from './smartsystem.plugins';
export class Smartsystem {
public env = new plugins.smartenv.Smartenv()
public cpuCount = plugins.os.cpus().length;
public cpus = plugins.os.cpus();
}