fix(core): update

This commit is contained in:
2019-08-06 17:37:07 +02:00
parent d76d1a263b
commit 0e48cb8f89
9 changed files with 1107 additions and 430 deletions

View File

@ -9,7 +9,7 @@ export class Qenv {
public requiredEnvVars: string[] = [];
public availableEnvVars: string[] = [];
public missingEnvVars: string[] = [];
public keyValueObject: {[key: string]: any } = {};
public keyValueObject: { [key: string]: any } = {};
public logger: plugins.smartlog.Smartlog;
// filePaths
@ -171,7 +171,7 @@ export class Qenv {
this.keyValueObject[requiredEnvVar] = chosenVar;
}
}
}
};
/**
* gets missing env vars

View File

@ -1,16 +1,10 @@
// native
import * as path from 'path';
export {
path
}
export { path };
// @pushrocks scope
import * as smartfile from '@pushrocks/smartfile';
import * as smartlog from '@pushrocks/smartlog';
export {
smartfile,
smartlog
}
export { smartfile, smartlog };