fix(dependencies): update to latest versions

This commit is contained in:
2018-08-31 00:13:05 +02:00
parent adfda70522
commit 1ce9e32116
7 changed files with 652 additions and 187 deletions

View File

@@ -4,7 +4,7 @@ import { Subject } from 'rxjs';
import * as plugins from './smartcli.plugins';
// import classes
import { Objectmap } from 'lik';
import { Objectmap } from '@pushrocks/lik';
// interfaces
export interface ICommandPromiseObject {
@@ -116,7 +116,7 @@ export class Smartcli {
*/
addHelp(optionsArg: { helpText: string }) {
this.addCommand('help').subscribe(argvArg => {
plugins.beautylog.log(optionsArg.helpText);
plugins.smartlog.defaultLogger.info(optionsArg.helpText);
});
}