1
0
mirror of synced 2025-11-08 12:57:47 +00:00

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:
Paul Selden
2018-11-26 23:23:37 -05:00
committed by Jason Dreyzehner
parent 9bdf46aaf6
commit bd7f021b4f

View File

@@ -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",