Files
early/ts/index.ts

37 lines
969 B
TypeScript
Raw Permalink Normal View History

2016-06-10 05:18:03 +02:00
import "typings-global"
2016-05-23 04:51:45 +02:00
import colors = require("colors");
import path = require("path");
2016-06-10 05:18:03 +02:00
import readline = require("readline");
import childProcess = require("child_process");
let earlyChild;
2016-06-10 05:18:03 +02:00
let doAnimation:boolean = true;
2016-06-10 05:36:06 +02:00
let doText:boolean = false;
if(process.argv.indexOf("-v") != -1 || process.env.CI){
2016-06-10 05:18:03 +02:00
doAnimation = false;
2016-06-10 05:43:27 +02:00
} else if(process.argv.indexOf("-v") == -1){
2016-06-10 05:36:06 +02:00
doText = true;
2016-06-10 05:18:03 +02:00
}
2016-05-21 20:33:13 +02:00
// exports
export let start = function(moduleNameArg:string = "",loaderLengthArg:string = "10"){
2016-06-10 05:18:03 +02:00
if(doAnimation){
earlyChild = childProcess.fork(path.join(__dirname,"early.child.js"),[],{
env: {
moduleNameArg:moduleNameArg,
loaderLengthArg:loaderLengthArg,
CI: process.env.CI
}
});
2016-06-10 05:36:06 +02:00
} else if (doText) {
console.log("**** starting " + moduleNameArg.cyan + " ****");
2016-06-10 05:18:03 +02:00
}
2016-05-20 19:06:25 +02:00
};
export let stop = function(){
2016-06-10 05:18:03 +02:00
if(doAnimation){
earlyChild.kill();
}
2016-05-20 19:06:25 +02:00
};