2016-03-12 09:21:16 +00:00
|
|
|
"use strict";
|
2016-09-22 21:23:16 +00:00
|
|
|
const plugins = require("./npmts.plugins");
|
|
|
|
const paths = require("./npmts.paths");
|
2016-10-02 18:35:13 +00:00
|
|
|
const q = require("q");
|
2016-10-21 15:48:52 +00:00
|
|
|
const npmts_log_1 = require("./npmts.log");
|
2016-08-19 07:46:36 +00:00
|
|
|
;
|
|
|
|
exports.run = function (argvArg) {
|
2016-10-02 18:35:13 +00:00
|
|
|
let done = q.defer();
|
2016-09-22 21:23:16 +00:00
|
|
|
let defaultConfig = {
|
2016-08-19 07:46:36 +00:00
|
|
|
argv: undefined,
|
|
|
|
coverageTreshold: 70,
|
2016-09-06 15:21:25 +00:00
|
|
|
mode: 'default',
|
2016-08-19 07:46:36 +00:00
|
|
|
test: true,
|
|
|
|
testTs: {},
|
|
|
|
ts: {},
|
2016-09-22 21:23:16 +00:00
|
|
|
tsOptions: {},
|
|
|
|
watch: false
|
2016-08-19 07:46:36 +00:00
|
|
|
};
|
|
|
|
// mix with configfile
|
2016-10-21 15:48:52 +00:00
|
|
|
npmts_log_1.npmtsOra.text('running npmextra');
|
2016-09-24 14:57:30 +00:00
|
|
|
let localNpmextra = new plugins.npmextra.Npmextra(paths.cwd);
|
|
|
|
let config = localNpmextra.dataFor('npmts', defaultConfig);
|
2016-08-19 09:16:13 +00:00
|
|
|
// add argv
|
|
|
|
config.argv = argvArg;
|
2016-08-19 07:46:36 +00:00
|
|
|
// check mode
|
|
|
|
switch (config.mode) {
|
2016-09-06 15:21:25 +00:00
|
|
|
case 'default':
|
|
|
|
case 'custom':
|
|
|
|
plugins.beautylog.ok('mode is ' + config.mode);
|
2016-08-19 07:46:36 +00:00
|
|
|
done.resolve(config);
|
|
|
|
break;
|
|
|
|
default:
|
2016-09-22 21:23:16 +00:00
|
|
|
plugins.beautylog.error(`mode not recognised!`);
|
2016-08-19 07:46:36 +00:00
|
|
|
process.exit(1);
|
|
|
|
}
|
|
|
|
;
|
2016-09-06 15:21:25 +00:00
|
|
|
// handle default mode
|
|
|
|
if (config.mode === 'default') {
|
2016-09-22 21:23:16 +00:00
|
|
|
config.ts = {
|
2016-09-29 14:19:49 +00:00
|
|
|
'./ts/**/*.ts': './dist/'
|
2016-09-22 21:23:16 +00:00
|
|
|
};
|
|
|
|
config.testTs = {
|
2016-09-29 14:19:49 +00:00
|
|
|
'./test/**/*.ts': './test/'
|
2016-09-22 21:23:16 +00:00
|
|
|
};
|
2016-02-19 23:53:23 +00:00
|
|
|
}
|
2016-08-19 07:46:36 +00:00
|
|
|
;
|
|
|
|
// mix with commandline
|
|
|
|
if (config.argv.notest) {
|
|
|
|
config.test = false;
|
|
|
|
}
|
|
|
|
;
|
2016-09-22 21:23:16 +00:00
|
|
|
if (config.argv.watch) {
|
|
|
|
config.watch = true;
|
|
|
|
}
|
|
|
|
;
|
2016-09-06 15:21:25 +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;
|
|
|
|
};
|