Skip to content

Commit

Permalink
chore: update std dependencies to 0.152.0 (#16)
Browse files Browse the repository at this point in the history
  • Loading branch information
gabeidx authored Aug 17, 2022
1 parent 5adfac6 commit 6c45513
Show file tree
Hide file tree
Showing 6 changed files with 24 additions and 14 deletions.
4 changes: 2 additions & 2 deletions deno.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@
}
},
"tasks": {
"cache": "deno cache --reload --lock=lock.json --lock-write --no-check cli.ts log/mod.ts console/mod.ts",
"check": "deno check cli.ts log/mod.ts console/mod.ts",
"cache": "deno cache --reload --lock=lock.json --lock-write --no-check cli.ts error/mod.ts log/mod.ts console/mod.ts",
"check": "deno check cli.ts error/mod.ts log/mod.ts console/mod.ts",
"dev:website": "deno run -A --watch website/main.ts",
"test": "deno test -A --unstable --no-check --coverage=./cov"
}
Expand Down
6 changes: 3 additions & 3 deletions deps.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
export * as colors from "https://deno.land/std@0.144.0/fmt/colors.ts";
export * as asserts from "https://deno.land/std@0.144.0/testing/asserts.ts";
export * as flags from "https://deno.land/std@0.144.0/flags/mod.ts";
export * as asserts from "https://deno.land/std@0.152.0/testing/asserts.ts";
export * as colors from "https://deno.land/std@0.152.0/fmt/colors.ts";
export * as flags from "https://deno.land/std@0.152.0/flags/mod.ts";
2 changes: 1 addition & 1 deletion error/deps.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
export {
assertEquals,
assertThrows,
} from "https://deno.land/std@0.149.0/testing/asserts.ts";
} from "https://deno.land/std@0.152.0/testing/asserts.ts";
15 changes: 9 additions & 6 deletions lock.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
{
"https://deno.land/std@0.144.0/_util/assert.ts": "e94f2eb37cebd7f199952e242c77654e43333c1ac4c5c700e929ea3aa5489f74",
"https://deno.land/std@0.144.0/flags/mod.ts": "54b3ed0939b073086c956adccb63a675b70596379d387bac96b4b6e022a99a10",
"https://deno.land/std@0.144.0/fmt/colors.ts": "6f9340b7fb8cc25a993a99e5efc56fe81bb5af284ff412129dd06df06f53c0b4",
"https://deno.land/std@0.144.0/testing/_diff.ts": "029a00560b0d534bc0046f1bce4bd36b3b41ada3f2a3178c85686eb2ff5f1413",
"https://deno.land/std@0.144.0/testing/_format.ts": "0d8dc79eab15b67cdc532826213bbe05bccfd276ca473a50a3fc7bbfb7260642",
"https://deno.land/std@0.144.0/testing/asserts.ts": "319df43e1e6bba2520508f6090a21a9a640cbe2754d255aee17cd1dfa78c2ff6"
"https://deno.land/std@0.152.0/_util/assert.ts": "e94f2eb37cebd7f199952e242c77654e43333c1ac4c5c700e929ea3aa5489f74",
"https://deno.land/std@0.152.0/flags/mod.ts": "34bb4148ad1cbdf1e3d20e1541f36c8a5b47205e3a5ee4e62a71eab89215011b",
"https://deno.land/std@0.152.0/fmt/colors.ts": "6f9340b7fb8cc25a993a99e5efc56fe81bb5af284ff412129dd06df06f53c0b4",
"https://deno.land/std@0.152.0/testing/_diff.ts": "029a00560b0d534bc0046f1bce4bd36b3b41ada3f2a3178c85686eb2ff5f1413",
"https://deno.land/std@0.152.0/testing/_format.ts": "0d8dc79eab15b67cdc532826213bbe05bccfd276ca473a50a3fc7bbfb7260642",
"https://deno.land/std@0.152.0/testing/_test_suite.ts": "ad453767aeb8c300878a6b7920e20370f4ce92a7b6c8e8a5d1ac2b7c14a09acb",
"https://deno.land/std@0.152.0/testing/asserts.ts": "093735c88f52bbead7f60a1f7a97a2ce4df3c2d5fab00a46956f20b4a5793ccd",
"https://deno.land/std@0.152.0/testing/bdd.ts": "311d19d872088e254ead39eb7742630f7b17547ca4847dbd670821c02789a0f9",
"https://deno.land/std@0.152.0/testing/mock.ts": "c7cc7eae6eecbe692798bd7ce155f81a9c600865b0b2e8799068e8a85cc83b3d"
}
7 changes: 7 additions & 0 deletions versions.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
[
"0.4.0",
"0.3.0",
"0.2.1",
"0.2.0",
"0.1.0"
]
4 changes: 2 additions & 2 deletions website/deps.ts
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
export { serve } from "https://deno.land/std@0.148.0/http/server.ts";
export { serveFile } from "https://deno.land/std@0.148.0/http/file_server.ts";
export { serve } from "https://deno.land/std@0.152.0/http/server.ts";
export { serveFile } from "https://deno.land/std@0.152.0/http/file_server.ts";

0 comments on commit 6c45513

Please sign in to comment.