tscoverage/ts/npmts.promisechain.ts

52 lines
2.3 KiB
TypeScript
Raw Normal View History

2016-05-25 03:23:48 +00:00
import "typings-global";
2016-03-12 10:09:54 +00:00
import plugins = require("./npmts.plugins");
2016-03-14 03:32:52 +00:00
2016-05-17 00:32:40 +00:00
export let npmtsOra = new plugins.beautylog.Ora("setting up TaskChain","cyan");
npmtsOra.start();
2016-03-14 03:32:52 +00:00
import NpmtsAssets = require("./npmts.assets");
2016-03-21 00:07:34 +00:00
import NpmtsClean = require("./npmts.clean");
2016-03-14 03:32:52 +00:00
import NpmtsCompile = require("./npmts.compile");
2016-02-19 23:53:23 +00:00
import NpmtsConfigFile = require("./npmts.configfile");
2016-03-12 09:21:16 +00:00
import NpmtsInstall = require("./npmts.install");
2016-02-22 21:22:39 +00:00
import NpmtsJsdoc = require("./npmts.jsdoc");
2016-03-14 03:32:52 +00:00
import NpmtsOptions = require("./npmts.options");
2016-03-26 13:08:48 +00:00
import NpmtsPublish = require("./npmts.publish");
2016-02-19 23:53:23 +00:00
import NpmtsTests = require("./npmts.tests");
2016-03-14 03:32:52 +00:00
2016-05-19 16:42:23 +00:00
export let promisechain = function(){
let done = plugins.Q.defer();
2016-02-19 23:53:23 +00:00
NpmtsConfigFile.run()
.then(NpmtsOptions.run)
2016-03-21 00:07:34 +00:00
.then(NpmtsClean.run)
2016-03-12 09:21:16 +00:00
.then(NpmtsInstall.run)
2016-02-19 23:53:23 +00:00
.then(NpmtsCompile.run)
2016-03-14 03:32:52 +00:00
.then(NpmtsAssets.run)
2016-02-22 21:22:39 +00:00
.then(NpmtsJsdoc.run)
2016-03-12 10:09:54 +00:00
.then(NpmtsTests.run)
2016-03-26 13:08:48 +00:00
.then(NpmtsPublish.run)
2016-03-12 10:09:54 +00:00
.then(function(configArg){
let shipString = "" +
"\n" +
"\n" +
" # # ( )\n" +
" ___#_#___|__\n" +
" _ |____________| _\n" +
" _=====| | | | | |==== _\n" +
" =====| |.---------------------------. | |====\n" +
" <--------------------' . . . . . . . . '--------------/\n" +
" \\ /\n" +
" \\___________________________________________________________/\n" +
" wwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwww\n" +
" wwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwww\n" +
" wwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwww\n"
2016-03-14 03:32:52 +00:00
if (process.env.CI){
console.log(shipString);
plugins.beautylog.success("READY TO SHIP!");
2016-03-26 16:35:55 +00:00
} else {
2016-05-19 20:11:18 +00:00
plugins.beautylog.success("Done!");
2016-03-14 03:32:52 +00:00
}
2016-05-19 16:42:23 +00:00
done.resolve();
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
};