tscoverage/dist/npmts.promisechain.js

51 lines
2.2 KiB
JavaScript
Raw Normal View History

2016-03-12 09:21:16 +00:00
"use strict";
require("typings-global");
2016-09-22 21:23:16 +00:00
const plugins = require("./npmts.plugins");
const beautylog_1 = require("beautylog");
2016-09-06 15:21:25 +00:00
exports.npmtsOra = new beautylog_1.Ora('setting up TaskChain', 'cyan');
2016-09-22 21:23:16 +00:00
const NpmtsAssets = require("./npmts.assets");
const NpmtsCheck = require("./npmts.check");
const NpmtsClean = require("./npmts.clean");
const NpmtsCompile = require("./npmts.compile");
const NpmtsTypeDoc = require("./npmts.typedoc");
const NpmtsOptions = require("./npmts.options");
const NpmtsTests = require("./npmts.tests");
const NpmtsWatch = require("./npmts.watch");
exports.run = function (argvArg) {
let done = plugins.q.defer();
2016-06-10 04:14:12 +00:00
exports.npmtsOra.start();
2016-08-19 07:46:36 +00:00
NpmtsOptions.run(argvArg)
2016-03-21 00:07:34 +00:00
.then(NpmtsClean.run)
2016-07-28 01:10:51 +00:00
.then(NpmtsCheck.run)
2016-02-19 23:53:23 +00:00
.then(NpmtsCompile.run)
2016-03-14 03:32:52 +00:00
.then(NpmtsAssets.run)
2016-07-14 22:38:41 +00:00
.then(NpmtsTypeDoc.run)
2016-03-12 10:09:54 +00:00
.then(NpmtsTests.run)
2016-09-22 21:23:16 +00:00
.then(NpmtsWatch.run)
2016-03-12 10:09:54 +00:00
.then(function (configArg) {
2016-09-22 21:23:16 +00:00
let shipString = '' +
2016-09-06 15:21:25 +00:00
'\n' +
'\n' +
' # # ( )\n' +
' ___#_#___|__\n' +
' _ |____________| _\n' +
' _=====| | | | | |==== _\n' +
' =====| |.---------------------------. | |====\n' +
2016-03-12 10:09:54 +00:00
" <--------------------' . . . . . . . . '--------------/\n" +
2016-09-06 15:21:25 +00:00
' \\ /\n' +
' \\___________________________________________________________/\n' +
' wwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwww\n' +
' wwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwww\n' +
' wwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwww\n';
2016-03-14 03:32:52 +00:00
if (process.env.CI) {
console.log(shipString);
2016-09-06 15:21:25 +00:00
plugins.beautylog.success('READY TO SHIP!');
2016-03-14 03:32:52 +00:00
}
2016-03-26 16:35:55 +00:00
else {
2016-09-06 15:21:25 +00:00
plugins.beautylog.success('Done!');
2016-03-26 16:35:55 +00:00
}
2016-09-22 21:23:16 +00:00
done.resolve(configArg);
2016-03-12 10:09:54 +00:00
});
2016-05-19 16:42:23 +00:00
return done.promise;
2016-02-19 23:53:23 +00:00
};