diff --git a/dist/npmts.cli.js b/dist/npmts.cli.js index 0fcc52c..43c2c51 100644 --- a/dist/npmts.cli.js +++ b/dist/npmts.cli.js @@ -30,13 +30,14 @@ let npmtsAnalytics = new plugins.smartanalytics.AnalyticsAccount('npmts', 'UA-64 npmtsAnalytics.sendEvent('npm', 'exec', 'git.zone'); exports.run = () => __awaiter(this, void 0, void 0, function* () { let done = q.defer(); + plugins.beautylog.figletSync('NPMTS'); let npmtsProjectInfo = new plugins.projectinfo.ProjectinfoNpm(paths.npmtsPackageRoot); // check for updates yield plugins.smartupdate.standardHandler.check('npmts', npmtsProjectInfo.version); + plugins.beautylog.log('---------------------------------------------'); let npmtsCli = new plugins.smartcli.Smartcli(); npmtsCli.standardTask() .then((argvArg) => { - plugins.beautylog.figletSync('NPMTS'); plugins.beautylog.info('npmts version: ' + npmtsProjectInfo.version); return NpmtsConfig.run(argvArg); }) diff --git a/ts/npmts.cli.ts b/ts/npmts.cli.ts index 140b74d..c70201b 100644 --- a/ts/npmts.cli.ts +++ b/ts/npmts.cli.ts @@ -23,13 +23,14 @@ npmtsAnalytics.sendEvent('npm','exec','git.zone') export let run = async () => { let done = q.defer() + plugins.beautylog.figletSync('NPMTS') let npmtsProjectInfo = new plugins.projectinfo.ProjectinfoNpm(paths.npmtsPackageRoot) // check for updates await plugins.smartupdate.standardHandler.check('npmts', npmtsProjectInfo.version) + plugins.beautylog.log('---------------------------------------------') let npmtsCli = new plugins.smartcli.Smartcli() npmtsCli.standardTask() .then((argvArg) => { - plugins.beautylog.figletSync('NPMTS') plugins.beautylog.info('npmts version: ' + npmtsProjectInfo.version) return NpmtsConfig.run(argvArg) })