tscoverage/dist/npmts.compile.js

63 lines
2.4 KiB
JavaScript
Raw Normal View History

2016-03-12 09:21:16 +00:00
"use strict";
require("typings-global");
var plugins = require("./npmts.plugins");
var helpers = require("./npmts.compile.helpers");
var npmts_promisechain_1 = require("./npmts.promisechain");
2016-07-01 02:50:23 +00:00
var promiseArray = [];
2016-06-07 06:49:22 +00:00
var compileTs = function (tsFileArrayArg, tsOptionsArg) {
if (tsOptionsArg === void 0) { tsOptionsArg = {}; }
2016-02-22 21:22:39 +00:00
var done = plugins.Q.defer();
2016-07-27 14:08:33 +00:00
var compilerOptionsDefault = {
declaration: true,
2016-09-06 15:21:25 +00:00
module: 'CommonJS',
target: 'ES6'
};
/**
* merges default ts options with those found in npmts.json
*/
2016-07-27 14:08:33 +00:00
var compilerOptions = function (keyArg) {
var tsOptionsCombined = plugins.lodashObject.merge(compilerOptionsDefault, tsOptionsArg);
var compilerOptions = {
declaration: tsOptionsCombined.declaration,
module: plugins.tsn.ModuleKind[tsOptionsCombined.module],
2016-09-03 16:50:09 +00:00
target: plugins.tsn.ScriptTarget[tsOptionsCombined.target],
2016-09-06 15:21:25 +00:00
exclude: 'node_modules/**/*'
2016-07-27 14:08:33 +00:00
};
return compilerOptions;
};
var _loop_1 = function (keyArg) {
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)) {
plugins.smartfile.fs.listFileTree(process.cwd(), keyArg)
2016-07-01 02:50:23 +00:00
.then(function (filesToConvertArg) {
var filesToConvertAbsolute = plugins.smartpath.transform.toAbsolute(filesToConvertArg, process.cwd());
var destDir = plugins.smartpath.transform.toAbsolute(tsFileArrayArg[keyArg], process.cwd());
return plugins.tsn.compile(filesToConvertAbsolute, destDir, compilerOptions(keyArg));
})
.then(function () {
done.resolve();
2016-07-01 02:50:23 +00:00
});
}
2016-07-01 02:50:23 +00:00
};
for (var keyArg in tsFileArrayArg) {
_loop_1(keyArg);
2016-03-12 09:21:16 +00:00
}
2016-06-07 06:49:22 +00:00
return done.promise;
};
exports.run = function (configArg) {
var done = plugins.Q.defer();
var config = configArg;
2016-09-06 15:21:25 +00:00
npmts_promisechain_1.npmtsOra.text('now compiling ' + 'TypeScript'.yellow);
2016-06-07 06:49:22 +00:00
compileTs(config.ts, config.tsOptions)
.then(function () {
2016-09-06 15:21:25 +00:00
plugins.beautylog.ok('compiled main TypeScript!');
plugins.beautylog.log('now compiling tests!');
2016-07-01 02:50:23 +00:00
return compileTs(config.testTs);
2016-06-07 06:49:22 +00:00
})
.then(function () {
2016-09-06 15:21:25 +00:00
plugins.beautylog.ok('compiled all TypeScript!');
2016-07-01 00:28:34 +00:00
done.resolve(config);
2016-02-19 23:53:23 +00:00
});
return done.promise;
};