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-07-01 00:28:34 +00:00
|
|
|
import {Ora} from "beautylog"
|
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");
|
|
|
|
|
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-07-14 22:38:41 +00:00
|
|
|
import NpmtsTypeDoc = require("./npmts.typedoc");
|
2016-03-14 03:32:52 +00:00
|
|
|
import NpmtsOptions = require("./npmts.options");
|
2016-02-19 23:53:23 +00:00
|
|
|
import NpmtsTests = require("./npmts.tests");
|
2016-03-14 03:32:52 +00:00
|
|
|
|
2016-06-16 01:02:33 +00:00
|
|
|
export let promisechain = function(argvArg){
|
2016-05-19 16:42:23 +00:00
|
|
|
let done = plugins.Q.defer();
|
2016-06-10 04:14:12 +00:00
|
|
|
npmtsOra.start();
|
2016-06-16 01:02:33 +00:00
|
|
|
NpmtsConfigFile.run(argvArg)
|
2016-02-19 23:53:23 +00:00
|
|
|
.then(NpmtsOptions.run)
|
2016-03-21 00:07:34 +00:00
|
|
|
.then(NpmtsClean.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)
|
|
|
|
.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
|
|
|
};
|