2016-03-12 09:21:16 +00:00
|
|
|
"use strict";
|
2016-10-02 18:35:13 +00:00
|
|
|
const q = require("q");
|
2016-10-21 15:48:52 +00:00
|
|
|
const paths = require("../npmts.paths");
|
|
|
|
const npmts_log_1 = require("../npmts.log");
|
|
|
|
const plugins = require("./mod00.plugins");
|
2016-06-07 06:49:22 +00:00
|
|
|
exports.run = function (configArg) {
|
2016-10-02 18:35:13 +00:00
|
|
|
let done = q.defer();
|
2016-09-22 21:23:16 +00:00
|
|
|
let config = configArg;
|
2016-10-21 15:48:52 +00:00
|
|
|
npmts_log_1.npmtsOra.text('now compiling ' + 'TypeScript'.yellow);
|
2016-09-18 11:08:31 +00:00
|
|
|
plugins.tsn.compileGlobStringObject(config.ts, config.tsOptions, paths.cwd)
|
2016-09-22 21:23:16 +00:00
|
|
|
.then(() => {
|
2016-09-06 15:21:25 +00:00
|
|
|
plugins.beautylog.ok('compiled main TypeScript!');
|
|
|
|
plugins.beautylog.log('now compiling tests!');
|
2016-09-28 22:19:46 +00:00
|
|
|
return plugins.tsn.compileGlobStringObject(config.testTs, config.tsOptions, paths.cwd);
|
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-09-28 22:19:46 +00:00
|
|
|
}).catch(err => { console.log(err); });
|
2016-02-19 23:53:23 +00:00
|
|
|
return done.promise;
|
|
|
|
};
|