2 Commits

Author SHA1 Message Date
af07a53053 2.0.8 2019-08-22 15:23:09 +02:00
2ace413435 fix(core): update 2019-08-22 15:23:09 +02:00
3 changed files with 3 additions and 3 deletions

2
package-lock.json generated
View File

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

View File

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

View File

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