Skip to content

Commit f38ba0f

Browse files
committed
dependency updates and misc. edits
1 parent afc5f2d commit f38ba0f

File tree

3 files changed

+10
-2
lines changed

3 files changed

+10
-2
lines changed

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# Dijkstra's Shortest Path Algorithm
22

3-
A pretty good implementation of Dijkstra's shortest-path algorithm for Deno.
3+
A fast and memory-efficient implementation of Dijkstra's shortest-path algorithm
4+
for Deno.
45

56
If you ever run into a problem that can be represented as a graph where the
67
solution has something to do with finding the shortest path between nodes, this

build

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
#!/bin/bash
2+
3+
set -e
4+
5+
deno fmt
6+
deno lint
7+
deno test

deps.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export * from "https://deno.land/std@0.115.0/testing/asserts.ts";
1+
export * from "https://deno.land/std@0.122.0/testing/asserts.ts";

0 commit comments

Comments
 (0)