diff --git a/dist/npmts.promisechain.js b/dist/npmts.promisechain.js index 582008c..2421b08 100644 --- a/dist/npmts.promisechain.js +++ b/dist/npmts.promisechain.js @@ -1,5 +1,6 @@ "use strict"; /// +var plugins = require("./npmts.plugins"); var NpmtsConfigFile = require("./npmts.configfile"); var NpmtsOptions = require("./npmts.options"); var NpmtsInstall = require("./npmts.install"); @@ -13,6 +14,24 @@ exports.run = function () { .then(NpmtsInstall.run) .then(NpmtsCompile.run) .then(NpmtsJsdoc.run) - .then(NpmtsTests.run); + .then(NpmtsTests.run) + .then(function (configArg) { + var shipString = "" + + "\n" + + "\n" + + " # # ( )\n" + + " ___#_#___|__\n" + + " _ |____________| _\n" + + " _=====| | | | | |==== _\n" + + " =====| |.---------------------------. | |====\n" + + " <--------------------' . . . . . . . . '--------------/\n" + + " \\ /\n" + + " \\___________________________________________________________/\n" + + " wwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwww\n" + + " wwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwww\n" + + " wwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwww\n"; + console.log(shipString); + plugins.beautylog.success("READY TO SHIP!"); + }); return promisechain; }; diff --git a/ts/npmts.promisechain.ts b/ts/npmts.promisechain.ts index b8da0b5..9ceba6e 100644 --- a/ts/npmts.promisechain.ts +++ b/ts/npmts.promisechain.ts @@ -1,4 +1,5 @@ /// +import plugins = require("./npmts.plugins"); import NpmtsConfigFile = require("./npmts.configfile"); import NpmtsOptions = require("./npmts.options"); import NpmtsInstall = require("./npmts.install"); @@ -12,6 +13,24 @@ export var run = function(){ .then(NpmtsInstall.run) .then(NpmtsCompile.run) .then(NpmtsJsdoc.run) - .then(NpmtsTests.run); + .then(NpmtsTests.run) + .then(function(configArg){ + let shipString = "" + + "\n" + + "\n" + + " # # ( )\n" + + " ___#_#___|__\n" + + " _ |____________| _\n" + + " _=====| | | | | |==== _\n" + + " =====| |.---------------------------. | |====\n" + + " <--------------------' . . . . . . . . '--------------/\n" + + " \\ /\n" + + " \\___________________________________________________________/\n" + + " wwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwww\n" + + " wwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwww\n" + + " wwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwww\n" + console.log(shipString); + plugins.beautylog.success("READY TO SHIP!"); + }); return promisechain; }; \ No newline at end of file