Update npm packages, cleanup the code, cleanup all tslint complain

This commit is contained in:
Godzil
2017-02-10 17:43:52 +00:00
parent 5d9c25491d
commit bee3f33e20
13 changed files with 751 additions and 389 deletions

View File

@@ -1,6 +1,10 @@
'use strict';
import batch from './batch';
batch(process.argv, (err: any) => {
if (err) console.error(err.stack || err);
batch(process.argv, (err: any) =>
{
if (err)
{
console.error(err.stack || err);
}
});