2016-03-12 09:21:16 +00:00
|
|
|
"use strict";
|
2016-05-25 03:23:48 +00:00
|
|
|
require("typings-global");
|
2016-02-19 23:53:23 +00:00
|
|
|
var plugins = require("./npmts.plugins");
|
2016-05-17 00:32:40 +00:00
|
|
|
var npmts_promisechain_1 = require("./npmts.promisechain");
|
2016-04-02 17:22:01 +00:00
|
|
|
exports.isCi = function () {
|
|
|
|
return plugins.smartci.check.isCi();
|
|
|
|
};
|
2016-02-19 23:53:23 +00:00
|
|
|
exports.run = function (configArg) {
|
2016-02-22 21:22:39 +00:00
|
|
|
var done = plugins.Q.defer();
|
2016-02-19 23:53:23 +00:00
|
|
|
var config = configArg;
|
2016-05-17 00:32:40 +00:00
|
|
|
npmts_promisechain_1.npmtsOra.text("now determining build options...");
|
2016-03-23 13:12:58 +00:00
|
|
|
//handle default mode
|
2016-02-19 23:53:23 +00:00
|
|
|
if (config.mode == "default") {
|
|
|
|
config.typings = [
|
2016-03-12 09:21:16 +00:00
|
|
|
"./ts/typings.json"
|
2016-02-19 23:53:23 +00:00
|
|
|
];
|
|
|
|
config.ts = (_a = {},
|
|
|
|
_a["./ts/**/*.ts"] = "./dist/",
|
|
|
|
_a
|
|
|
|
);
|
2016-06-07 06:49:22 +00:00
|
|
|
config.testTs = (_b = {},
|
|
|
|
_b["./test/test.ts"] = "./test/",
|
|
|
|
_b
|
|
|
|
);
|
2016-02-19 23:53:23 +00:00
|
|
|
config.test = ["./index.js"];
|
|
|
|
}
|
2016-04-30 09:55:42 +00:00
|
|
|
//check if config.tsOptions is available
|
|
|
|
config.tsOptions ? void (0) : config.tsOptions = {};
|
2016-03-29 23:32:41 +00:00
|
|
|
config.coverageTreshold ? void (0) : config.coverageTreshold = 70;
|
2016-03-23 14:47:28 +00:00
|
|
|
// handle docs
|
|
|
|
config.docs ? void (0) : config.docs = {};
|
2016-04-01 23:20:52 +00:00
|
|
|
plugins.beautylog.ok("build options are ready!");
|
2016-03-23 13:12:58 +00:00
|
|
|
done.resolve(config);
|
2016-02-19 23:53:23 +00:00
|
|
|
return done.promise;
|
2016-06-07 06:49:22 +00:00
|
|
|
var _a, _b;
|
2016-02-19 23:53:23 +00:00
|
|
|
};
|