Skip to content

Commit

Permalink
feat: add typedoc and script
Browse files Browse the repository at this point in the history
  • Loading branch information
shivjm committed Nov 6, 2021
1 parent 57a363d commit 883f684
Show file tree
Hide file tree
Showing 4 changed files with 69 additions and 2 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,5 @@
/packages/*/node_modules/

.pnpm-debug.log
/docs/
packages/*/docs/
7 changes: 5 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
{
"name": "remark-extensions",
"engines": {
"node": ">=10",
"pnpm": ">=3"
Expand All @@ -7,14 +8,16 @@
"preinstall": "npx only-allow pnpm",
"lint": "pnpm lint -r",
"build": "pnpm build -r --parallel",
"test": "pnpm test -r"
"test": "pnpm test -r",
"typedoc": "typedoc --entryPointStrategy packages --options typedoc.json packages/*"
},
"pnpm": {
"overrides": {
"conventional-changelog-conventionalcommits": "npm:@shivjm/[email protected]"
}
},
"devDependencies": {
"standard-version": "^9.3.2"
"standard-version": "^9.3.2",
"typedoc": "^0.22.7"
}
}
58 changes: 58 additions & 0 deletions pnpm-lock.yaml

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

4 changes: 4 additions & 0 deletions typedoc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"validation": true,
"excludeExternals": true
}

0 comments on commit 883f684

Please sign in to comment.