prevent typedoc from causing build fail
This commit is contained in:
		
							
								
								
									
										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"));
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -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