fix(core): update

This commit is contained in:
2020-10-05 10:33:08 +00:00
parent 74809bd8d4
commit e15a569391
8 changed files with 131 additions and 56 deletions

View File

@ -4,7 +4,7 @@ import * as toolsInstall from './tools.install';
export const run = async () => {
const toolsCli = new plugins.smartcli.Smartcli();
toolsCli.addCommand('install').subscribe(async argvArg => {
toolsCli.addCommand('install').subscribe(async (argvArg) => {
toolsInstall.install('default');
});

View File

@ -4,7 +4,7 @@ import { logger } from './tools.logging';
const installExec = async (packageNames: string[]) => {
const smartshellInstance = new plugins.smartshell.Smartshell({
executor: 'bash'
executor: 'bash',
});
let installString = '';

View File

@ -7,9 +7,9 @@ export const logger = new plugins.smartlog.Smartlog({
containerName: 'Some Containername',
environment: 'local',
runtime: 'node',
zone: 'gitzone'
zone: 'gitzone',
},
minimumLogLevel: 'silly'
minimumLogLevel: 'silly',
});
logger.addLogDestination(new plugins.smartlogDestinationLocal.DestinationLocal());