From 12cf37f01f9f26b3ee7af425d77d105fbedb7786 Mon Sep 17 00:00:00 2001 From: PhilKunz Date: Fri, 25 Nov 2016 00:52:17 +0100 Subject: [PATCH] update messages for better feedback --- dist/mod02/index.js | 1 + ts/mod02/index.ts | 1 + 2 files changed, 2 insertions(+) diff --git a/dist/mod02/index.js b/dist/mod02/index.js index e17fdab..7b3153d 100644 --- a/dist/mod02/index.js +++ b/dist/mod02/index.js @@ -42,6 +42,7 @@ let mocha = function (configArg) { ]); babelCoverageSmartstream.run() .then(() => { + plugins.beautylog.info('transpiled code to ES5 for use in mocha'); return localSmartstream.run() .then(() => { done.resolve(configArg); }, (err) => { plugins.beautylog.error('Tests failed!'); diff --git a/ts/mod02/index.ts b/ts/mod02/index.ts index 79a565d..f15814c 100644 --- a/ts/mod02/index.ts +++ b/ts/mod02/index.ts @@ -48,6 +48,7 @@ let mocha = function (configArg: INpmtsConfig) { babelCoverageSmartstream.run() .then( () => { + plugins.beautylog.info('transpiled code to ES5 for use in mocha') return localSmartstream.run() .then(() => { done.resolve(configArg) }, (err) => { plugins.beautylog.error('Tests failed!')