From b293dfe92d4de7fdb257016c69f9b1f610151aef Mon Sep 17 00:00:00 2001 From: PhilKunz Date: Thu, 11 Feb 2016 19:10:01 +0100 Subject: [PATCH] add figlet greeting --- index.js | 1 + package.json | 8 ++++---- test/assets/coverage/lcov-report/assets/index.html | 2 +- test/assets/coverage/lcov-report/assets/index.js.html | 2 +- test/assets/coverage/lcov-report/index.html | 2 +- ts/index.ts | 3 ++- 6 files changed, 10 insertions(+), 8 deletions(-) diff --git a/index.js b/index.js index 92c95bd..2f8175c 100644 --- a/index.js +++ b/index.js @@ -251,5 +251,6 @@ var NpmtsPromisechain; /// console.log("**** starting NPMTS ****"); var plugins = NpmtsPlugins.init(); +plugins.beautylog.figletSync("NPMTS"); var paths = NpmtsPaths.init(); var promisechain = NpmtsPromisechain.init(); diff --git a/package.json b/package.json index 39182b1..6c11573 100644 --- a/package.json +++ b/package.json @@ -26,19 +26,19 @@ }, "homepage": "https://github.com/pushrocks/npmts#readme", "dependencies": { - "beautylog": "2.0.7", + "beautylog": "2.1.1", "fs-extra": "^0.26.5", - "gulp": "3.9.0", + "gulp": "3.9.1", "gulp-coveralls": "^0.1.4", "gulp-insert": "0.5.0", "gulp-istanbul": "^0.10.3", "gulp-mocha": "^2.2.0", - "gulp-typescript": "2.10.0", + "gulp-typescript": "2.11.0", "gulp-typings": "0.0.0", "merge2": "1.0.1", "q": "^1.4.1", "smartcli": "0.0.11", "smartfile": "0.0.11", - "typings": "^0.6.6" + "typings": "^0.6.8" } } diff --git a/test/assets/coverage/lcov-report/assets/index.html b/test/assets/coverage/lcov-report/assets/index.html index 26c975c..422fde4 100644 --- a/test/assets/coverage/lcov-report/assets/index.html +++ b/test/assets/coverage/lcov-report/assets/index.html @@ -77,7 +77,7 @@ diff --git a/test/assets/coverage/lcov-report/assets/index.js.html b/test/assets/coverage/lcov-report/assets/index.js.html index a0d72af..bedbaf3 100644 --- a/test/assets/coverage/lcov-report/assets/index.js.html +++ b/test/assets/coverage/lcov-report/assets/index.js.html @@ -76,7 +76,7 @@ module.exports = testplugin; diff --git a/test/assets/coverage/lcov-report/index.html b/test/assets/coverage/lcov-report/index.html index 458f683..e83aa90 100644 --- a/test/assets/coverage/lcov-report/index.html +++ b/test/assets/coverage/lcov-report/index.html @@ -77,7 +77,7 @@ diff --git a/ts/index.ts b/ts/index.ts index 27b9d4c..287f2b9 100644 --- a/ts/index.ts +++ b/ts/index.ts @@ -7,7 +7,8 @@ /// /// /// -console.log("**** starting NPMTS ****") +console.log("**** starting NPMTS ****"); var plugins = NpmtsPlugins.init(); +plugins.beautylog.figletSync("NPMTS"); var paths = NpmtsPaths.init(); var promisechain = NpmtsPromisechain.init();