Compare commits
2 Commits
Author | SHA1 | Date | |
---|---|---|---|
1202a68b01 | |||
c67d43e16d |
4
dist/npmts.typedoc.js
vendored
4
dist/npmts.typedoc.js
vendored
@ -5,7 +5,7 @@ var paths = require("./npmts.paths");
|
|||||||
var npmts_promisechain_1 = require("./npmts.promisechain");
|
var npmts_promisechain_1 = require("./npmts.promisechain");
|
||||||
var genTypeDoc = function (configArg) {
|
var genTypeDoc = function (configArg) {
|
||||||
var done = plugins.Q.defer();
|
var done = plugins.Q.defer();
|
||||||
npmts_promisechain_1.npmtsOra.text("now generating " + "EsDoc documentation".yellow);
|
npmts_promisechain_1.npmtsOra.text("now generating " + "TypeDoc documentation".yellow);
|
||||||
plugins.beautylog.log("TypeDoc Output:");
|
plugins.beautylog.log("TypeDoc Output:");
|
||||||
plugins.gulp.src(plugins.path.join(paths.tsDir, "**/*.ts"))
|
plugins.gulp.src(plugins.path.join(paths.tsDir, "**/*.ts"))
|
||||||
.pipe(plugins.g.typedoc({
|
.pipe(plugins.g.typedoc({
|
||||||
@ -19,7 +19,7 @@ var genTypeDoc = function (configArg) {
|
|||||||
// TypeDoc options (see typedoc docs)
|
// TypeDoc options (see typedoc docs)
|
||||||
name: "my-project",
|
name: "my-project",
|
||||||
//theme: "default",
|
//theme: "default",
|
||||||
ignoreCompilerErrors: false,
|
ignoreCompilerErrors: true,
|
||||||
version: true,
|
version: true,
|
||||||
}))
|
}))
|
||||||
.pipe(plugins.g.gFunction(done.resolve, "atEnd"));
|
.pipe(plugins.g.gFunction(done.resolve, "atEnd"));
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "npmts",
|
"name": "npmts",
|
||||||
"version": "5.3.12",
|
"version": "5.3.13",
|
||||||
"description": "write npm modules with TypeScript",
|
"description": "write npm modules with TypeScript",
|
||||||
"main": "dist/index.js",
|
"main": "dist/index.js",
|
||||||
"bin": {
|
"bin": {
|
||||||
|
@ -5,7 +5,7 @@ import {npmtsOra} from "./npmts.promisechain";
|
|||||||
|
|
||||||
let genTypeDoc = function(configArg){
|
let genTypeDoc = function(configArg){
|
||||||
let done = plugins.Q.defer();
|
let done = plugins.Q.defer();
|
||||||
npmtsOra.text("now generating " + "EsDoc documentation".yellow);
|
npmtsOra.text("now generating " + "TypeDoc documentation".yellow);
|
||||||
plugins.beautylog.log("TypeDoc Output:");
|
plugins.beautylog.log("TypeDoc Output:");
|
||||||
plugins.gulp.src(plugins.path.join(paths.tsDir,"**/*.ts"))
|
plugins.gulp.src(plugins.path.join(paths.tsDir,"**/*.ts"))
|
||||||
.pipe(plugins.g.typedoc({
|
.pipe(plugins.g.typedoc({
|
||||||
@ -22,7 +22,7 @@ let genTypeDoc = function(configArg){
|
|||||||
name: "my-project",
|
name: "my-project",
|
||||||
|
|
||||||
//theme: "default",
|
//theme: "default",
|
||||||
ignoreCompilerErrors: false,
|
ignoreCompilerErrors: true,
|
||||||
version: true,
|
version: true,
|
||||||
}))
|
}))
|
||||||
.pipe(plugins.g.gFunction(done.resolve,"atEnd"));
|
.pipe(plugins.g.gFunction(done.resolve,"atEnd"));
|
||||||
|
Reference in New Issue
Block a user