如何在目录忽略.gitignore文件上运行jsdoc

时间:2019-05-13 19:43:54

标签: jsdoc

我可以在整个项目上运行jsdoc,

$ jsdoc -r .

但是,这会为node_modules中的js文件生成文档。如何判断jsdoc无法在.gitignore中的文件上运行?

1 个答案:

答案 0 :(得分:0)

如何使用这样的配置文件?

$ jsdoc.js -c ./.jsdoc.conf.json

./ .. jsdoc.conf.json

{
  "source": {
    "include": ["."],
    "includePattern": ".+\\.js(doc|x)?$",
    "excludePattern": "node_modules"
  }
}

Generate jsdoc documentation借来的在堆栈上。