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