tscoverage/dist/npmts.typedoc.js

44 lines
1.4 KiB
JavaScript
Raw Normal View History

2016-07-14 22:38:41 +00:00
"use strict";
require("typings-global");
2016-09-22 21:23:16 +00:00
const plugins = require("./npmts.plugins");
const paths = require("./npmts.paths");
const npmts_promisechain_1 = require("./npmts.promisechain");
const npmts_check_1 = require("./npmts.check");
let genTypeDoc = function (configArg) {
let done = plugins.q.defer();
2016-09-06 15:21:25 +00:00
npmts_promisechain_1.npmtsOra.text('now generating ' + 'TypeDoc documentation'.yellow);
plugins.beautylog.log('TypeDoc Output:');
plugins.gulp.src(plugins.path.join(paths.tsDir, '**/*.ts'))
2016-07-14 22:38:41 +00:00
.pipe(plugins.g.typedoc({
// TypeScript options (see typescript docs)
2016-09-06 15:21:25 +00:00
module: 'commonjs',
target: 'es6',
2016-07-14 22:38:41 +00:00
includeDeclarations: true,
// Output options (see typedoc docs)
2016-08-30 14:35:46 +00:00
out: paths.pagesApiDir,
2016-09-06 15:21:25 +00:00
json: plugins.path.join(paths.pagesApiDir, 'file.json'),
2016-07-14 22:38:41 +00:00
// TypeDoc options (see typedoc docs)
2016-09-02 12:10:09 +00:00
name: npmts_check_1.projectInfo.name,
2016-09-06 15:21:25 +00:00
readme: plugins.path.join(paths.cwd, 'README.md'),
2016-09-02 12:10:09 +00:00
// theme: "default",
ignoreCompilerErrors: true,
2016-09-06 15:21:25 +00:00
version: true
2016-07-14 22:38:41 +00:00
}))
2016-09-06 15:21:25 +00:00
.pipe(plugins.g.gFunction(done.resolve, 'atEnd'));
2016-07-14 22:38:41 +00:00
return done.promise;
};
exports.run = function (configArg) {
2016-09-22 21:23:16 +00:00
let done = plugins.q.defer();
2016-08-19 07:46:36 +00:00
if (configArg.docs) {
2016-08-13 21:54:17 +00:00
genTypeDoc(configArg)
2016-09-22 21:23:16 +00:00
.then(() => {
2016-08-13 21:54:17 +00:00
done.resolve(configArg);
});
}
2016-08-19 07:46:36 +00:00
else {
done.resolve(configArg);
}
2016-08-13 21:54:17 +00:00
;
2016-07-14 22:38:41 +00:00
return done.promise;
};