diff --git a/README.md b/README.md index f6c8b01..5affef8 100644 --- a/README.md +++ b/README.md @@ -47,4 +47,6 @@ mySmartcli.addCommand({commandname: 'install'}) .then(argvArg => { // do something if program is called with command "install" }) -``` \ No newline at end of file +``` + +[![npm](https://push.rocks/assets/repo-header.svg)](https://push.rocks) diff --git a/test/test.ts b/test/test.ts index d2c1d5f..d677f87 100644 --- a/test/test.ts +++ b/test/test.ts @@ -5,7 +5,7 @@ let beautylog = require('beautylog') let should = require('should') describe('smartcli.Smartcli class',function(){ - let smartCliTestObject:smartcli.Smartcli + let smartCliTestObject: smartcli.Smartcli describe('new Smartcli()',function(){ it('should create a new Smartcli',function(){ smartCliTestObject = new smartcli.Smartcli() @@ -15,7 +15,7 @@ describe('smartcli.Smartcli class',function(){ describe('.addCommand',function(){ it('should add an command',function(){ smartCliTestObject.addCommand({ - commandName:'awesome' + commandName: 'awesome' }) }) }) diff --git a/ts/smartcli.classes.smartcli.ts b/ts/smartcli.classes.smartcli.ts index 8ad8af6..d9eb759 100644 --- a/ts/smartcli.classes.smartcli.ts +++ b/ts/smartcli.classes.smartcli.ts @@ -1,7 +1,6 @@ import * as q from 'q' import * as plugins from './smartcli.plugins' -import * as interaction from './smartcli.classes.interaction' // import classes import {Objectmap} from 'lik'