Skip to content
This repository has been archived by the owner on Jun 19, 2021. It is now read-only.

Commit

Permalink
docs: bootstrap API docs generator 🕮
Browse files Browse the repository at this point in the history
  • Loading branch information
DrSensor committed Jan 29, 2019
1 parent c7df3be commit 1a4198b
Show file tree
Hide file tree
Showing 4 changed files with 169 additions and 1 deletion.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
/.nyc_output
dist
/coverage
/docs
/lib
types
/tmp
Expand Down
157 changes: 157 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 4 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
"jest": "^24.0.0",
"lerna": "^3.10.7",
"lint-staged": "^8.1.0",
"opn-cli": "^4.0.0",
"prettier": "^1.15.3",
"rollup": "^1.0.0",
"rollup-plugin-alias": "^1.5.1",
Expand All @@ -35,6 +36,7 @@
"shelljs": "^0.8.3",
"tslint": "^5.12.0",
"tslint-config-prettier": "^1.17.0",
"typedoc": "^0.14.2",
"typescript": "^3.2.2"
},
"license": "MIT",
Expand Down Expand Up @@ -68,7 +70,8 @@
"postpack": "rm -f oclif.manifest.json",
"posttest": "tslint -p . -t stylish",
"prepack": "npm run build",
"predocs": "echo 🙄",
"predocs": "typedoc packages/library/src",
"docs": "opn docs/index.html",
"prepublishOnly": "npm run build",
"release": "lerna version --no-push --no-git-tag-version --yes",
"release:ok": "lerna version",
Expand Down
7 changes: 7 additions & 0 deletions typedoc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
module.exports = {
name: "â­˜bot",
out: "docs",
target: "es6",
theme: "minimal",
mode: "file",
}

0 comments on commit 1a4198b

Please sign in to comment.