File tree Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Original file line number Diff line number Diff line change 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" ,
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" : {
Original file line number Diff line number Diff 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+ */
7984function isConnectedGraph (
8085 graph : dijkstra . Graph
8186) : { connected : boolean ; connectedSections : string [ ] [ ] } {
You can’t perform that action at this time.
0 commit comments