Skip to content

Commit c351fc3

Browse files
committed
Ignore some things in docs
1 parent c7953a4 commit c351fc3

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "room-finder",
33
"version": "0.0.8",
44
"repository": "github:WalnutProgramming/room-finder",
5-
"hompage": "https://walnutprogramming.github.io/room-finder/",
5+
"homepage": "https://walnutprogramming.github.io/room-finder/",
66
"license": "AGPL-3.0-only",
77
"main": "./dist/index.js",
88
"module": "./dist/module.js",
@@ -48,7 +48,7 @@
4848
"prep": "yarn build && yarn docs && yarn test",
4949
"prepublishOnly": "yarn prep",
5050
"readme": "yarn embedme README.md",
51-
"docs": "yarn readme && yarn typedoc --out docs --mode file src && copyfiles images/* docs",
51+
"docs": "yarn readme && yarn typedoc --out docs --mode file --exclude **/*.test.ts src && copyfiles images/* docs",
5252
"test": "jest"
5353
},
5454
"prettier": {

src/graph.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,11 @@ function getShortestPath(
7676
return dijkstra.find_path(graph, idFrom, idTo);
7777
}
7878

79+
/**
80+
* @ignore
81+
* @param graph - a graph
82+
* @return - Is this a connected graph?
83+
*/
7984
function isConnectedGraph(
8085
graph: dijkstra.Graph
8186
): { connected: boolean; connectedSections: string[][] } {

0 commit comments

Comments
 (0)