fix(typedoc): exclude spec files from typedoc generation (#133)
Previously would fill your documentation menu with garbage from your spec files.
This commit is contained in:
committed by
Jason Dreyzehner
parent
9bdf46aaf6
commit
bd7f021b4f
@@ -45,8 +45,8 @@
|
||||
"cov:send": "nyc report --reporter=lcov > coverage.lcov && codecov",
|
||||
"cov:check": "nyc report && nyc check-coverage --lines 100 --functions 100 --branches 100",
|
||||
"doc": "run-s doc:html && opn build/docs/index.html",
|
||||
"doc:html": "typedoc src/ --target ES6 --mode file --out build/docs",
|
||||
"doc:json": "typedoc src/ --target ES6 --mode file --json build/docs/typedoc.json",
|
||||
"doc:html": "typedoc src/ --exclude **/*.spec.ts --target ES6 --mode file --out build/docs",
|
||||
"doc:json": "typedoc src/ --exclude **/*.spec.ts --target ES6 --mode file --json build/docs/typedoc.json",
|
||||
"doc:publish": "gh-pages -m \"[ci skip] Updates\" -d build/docs",
|
||||
"version": "standard-version",
|
||||
"reset": "git clean -dfx && git reset --hard && npm i",
|
||||
|
||||
Reference in New Issue
Block a user