Closed A-312 closed 5 years ago
I want to disable private in navigation menu. I try docdash.private or docdash.static but they don't make any change.
docdash.private
docdash.static
jsdoc.json:
{ "opts": { "destination": "./.doc/", "private": true, "template": "node_modules/docdash", "readme": "README.md", "tutorials": "doc/", "package": "package.json" }, "docdash": { "private": false } }
gulpfile.js:
const path = require('path') const del = require('del') const gulp = require('gulp') const jsdoc = require('gulp-jsdoc3') const normalizeSEP = (str) => str.replace(/\//g, path.sep) process.chdir(path.resolve(__dirname)) const docFolder = path.resolve(__dirname, '.doc') const cleanDoc = () => del([ docFolder ]) const src = [ './bin/**/*.js' ].map(normalizeSEP) const generateDoc = () => gulp.src(src, {read: false}) .pipe(jsdoc(require('./jsdoc.json'))) gulp.task('doc', gulp.series(cleanDoc, generateDoc))
My script :
/** * This function load a specific CSS Engine. * * @private * @memberof AppExpress * @param {string} engine Name of engine to add */ function registerCSSEngine(engine) {
I want to disable private in navigation menu. I try
docdash.private
ordocdash.static
but they don't make any change.jsdoc.json:
gulpfile.js:
My script :