2016-05-25 03:23:48 +00:00
|
|
|
import "typings-global";
|
2016-02-19 23:53:23 +00:00
|
|
|
import plugins = require("./npmts.plugins");
|
|
|
|
import paths = require("./npmts.paths");
|
2016-04-30 03:49:53 +00:00
|
|
|
import helpers = require("./npmts.compile.helpers");
|
2016-05-17 00:32:40 +00:00
|
|
|
import {npmtsOra} from "./npmts.promisechain";
|
2016-04-30 03:49:53 +00:00
|
|
|
|
2016-07-01 02:50:23 +00:00
|
|
|
let promiseArray = [];
|
|
|
|
let compileTs = (tsFileArrayArg:string[],tsOptionsArg = {}) => {
|
2016-04-30 03:49:53 +00:00
|
|
|
let done = plugins.Q.defer();
|
2016-03-12 09:21:16 +00:00
|
|
|
|
2016-07-27 14:08:33 +00:00
|
|
|
let compilerOptionsDefault = {
|
2016-04-30 09:55:42 +00:00
|
|
|
declaration: true,
|
2016-07-27 14:08:33 +00:00
|
|
|
module: "CommonJS",
|
|
|
|
target: "ES6"
|
2016-04-30 09:55:42 +00:00
|
|
|
};
|
2016-04-30 03:49:53 +00:00
|
|
|
|
2016-04-30 09:55:42 +00:00
|
|
|
/**
|
|
|
|
* merges default ts options with those found in npmts.json
|
|
|
|
*/
|
2016-07-27 14:08:33 +00:00
|
|
|
let compilerOptions = function (keyArg:string) {
|
|
|
|
let tsOptionsCombined = plugins.lodashObject.merge(compilerOptionsDefault, tsOptionsArg);
|
|
|
|
let compilerOptions:plugins.tsn.CompilerOptions = {
|
|
|
|
declaration: tsOptionsCombined.declaration,
|
|
|
|
module: plugins.tsn.ModuleKind[tsOptionsCombined.module],
|
2016-09-03 16:50:09 +00:00
|
|
|
target: plugins.tsn.ScriptTarget[tsOptionsCombined.target],
|
|
|
|
exclude: "node_modules/**/*"
|
2016-07-27 14:08:33 +00:00
|
|
|
};
|
|
|
|
return compilerOptions;
|
2016-04-30 09:55:42 +00:00
|
|
|
};
|
2016-06-07 06:49:22 +00:00
|
|
|
for (let keyArg in tsFileArrayArg) {
|
2016-07-01 02:50:23 +00:00
|
|
|
plugins.beautylog.info(`TypeScript assignment: transpile from ${keyArg.blue} to ${tsFileArrayArg[keyArg].blue}`);
|
2016-06-07 06:49:22 +00:00
|
|
|
if (helpers.checkOutputPath(tsFileArrayArg,keyArg)) {
|
2016-07-01 02:50:23 +00:00
|
|
|
let filesReadPromise = plugins.smartfile.fs.listFileTree(process.cwd(),keyArg)
|
|
|
|
.then((filesToConvertArg) => {
|
|
|
|
let filesToConvertAbsolute = plugins.smartpath.transform.toAbsolute(filesToConvertArg,process.cwd());
|
|
|
|
let destDir = plugins.smartpath.transform.toAbsolute(tsFileArrayArg[keyArg],process.cwd());
|
|
|
|
let filesCompiledPromise = plugins.tsn.compile(
|
|
|
|
filesToConvertAbsolute,
|
2016-07-27 14:08:33 +00:00
|
|
|
destDir,
|
|
|
|
compilerOptions(keyArg)
|
2016-07-01 02:50:23 +00:00
|
|
|
);
|
|
|
|
promiseArray.push(filesCompiledPromise);
|
|
|
|
});
|
|
|
|
promiseArray.push(filesReadPromise);
|
2016-04-30 09:55:42 +00:00
|
|
|
}
|
2016-07-01 02:50:23 +00:00
|
|
|
};
|
|
|
|
plugins.Q.all(promiseArray)
|
|
|
|
.then(done.resolve);
|
2016-06-07 06:49:22 +00:00
|
|
|
return done.promise;
|
|
|
|
}
|
|
|
|
|
2016-04-30 09:55:42 +00:00
|
|
|
|
2016-06-07 06:49:22 +00:00
|
|
|
export let run = function (configArg) {
|
|
|
|
let done = plugins.Q.defer();
|
|
|
|
let config = configArg;
|
|
|
|
npmtsOra.text("now compiling " + "TypeScript".yellow);
|
|
|
|
|
|
|
|
compileTs(config.ts,config.tsOptions)
|
|
|
|
.then(() => {
|
2016-07-01 02:50:23 +00:00
|
|
|
plugins.beautylog.ok("compiled main TypeScript!");
|
|
|
|
plugins.beautylog.log("now compiling tests!");
|
|
|
|
return compileTs(config.testTs);
|
2016-06-07 06:49:22 +00:00
|
|
|
})
|
|
|
|
.then(function () {
|
2016-07-01 02:50:23 +00:00
|
|
|
plugins.beautylog.ok("compiled all TypeScript!");
|
2016-06-30 01:17:24 +00:00
|
|
|
done.resolve(config);
|
2016-02-09 04:39:31 +00:00
|
|
|
});
|
2016-02-19 23:53:23 +00:00
|
|
|
return done.promise;
|
|
|
|
};
|