Skip to content

Commit

Permalink
docs: fix empty docs landing page (#181)
Browse files Browse the repository at this point in the history
* docs: fix tsdoc

* chore: remove serve-docs.js
  • Loading branch information
SgtPooki authored Jul 14, 2023
1 parent 5850e51 commit 8566361
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 2 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@
"generate": "aegir run generate",
"build": "aegir run build",
"lint": "aegir run lint",
"docs": "NODE_OPTIONS=--max_old_space_size=4096 aegir docs -- --name helia --titleLink './'",
"docs:no-publish": "NODE_OPTIONS=--max_old_space_size=4096 aegir docs --publish false -- --name helia --titleLink './'",
"docs": "NODE_OPTIONS=--max_old_space_size=4096 aegir docs",
"docs:no-publish": "NODE_OPTIONS=--max_old_space_size=4096 aegir docs --publish false",
"dep-check": "aegir run dep-check",
"release": "npm run docs:no-publish && aegir run release && npm run docs"
},
Expand Down
16 changes: 16 additions & 0 deletions typedoc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
{
"$schema": "https://typedoc.org/schema.json",
"entryPoints": [
"./packages/helia",
"./packages/interface",
"./packages/interop",
],
"entryPointStrategy": "packages",
"out": ".docs",
"hideGenerator": true,
"name": "Helia",
"includeVersion": true,
"cleanOutputDir": true,
"logLevel": "Verbose",
"readme": "./README.md",
}

0 comments on commit 8566361

Please sign in to comment.