diff --git a/deno.json b/deno.json index 9891a5b..454ee24 100644 --- a/deno.json +++ b/deno.json @@ -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" } diff --git a/deps.ts b/deps.ts index d79434b..5fd15a1 100644 --- a/deps.ts +++ b/deps.ts @@ -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"; diff --git a/error/deps.ts b/error/deps.ts index 550eab6..9d77950 100644 --- a/error/deps.ts +++ b/error/deps.ts @@ -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"; diff --git a/lock.json b/lock.json index 5fa75d2..30d74e7 100644 --- a/lock.json +++ b/lock.json @@ -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" } diff --git a/versions.json b/versions.json new file mode 100644 index 0000000..883efde --- /dev/null +++ b/versions.json @@ -0,0 +1,7 @@ +[ + "0.4.0", + "0.3.0", + "0.2.1", + "0.2.0", + "0.1.0" +] diff --git a/website/deps.ts b/website/deps.ts index 7e98209..7150f52 100644 --- a/website/deps.ts +++ b/website/deps.ts @@ -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";