A command-line journaling application
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

update tests, too

+5 -5
+4 -4
deno.lock
··· 1 1 { 2 2 "version": "2", 3 3 "remote": { 4 - "https://deno.land/std@0.164.0/fmt/colors.ts": "9e36a716611dcd2e4865adea9c4bec916b5c60caad4cdcdc630d4974e6bb8bd4", 5 - "https://deno.land/std@0.164.0/testing/_diff.ts": "a23e7fc2b4d8daa3e158fa06856bedf5334ce2a2831e8bf9e509717f455adb2c", 6 - "https://deno.land/std@0.164.0/testing/_format.ts": "cd11136e1797791045e639e9f0f4640d5b4166148796cad37e6ef75f7d7f3832", 7 - "https://deno.land/std@0.164.0/testing/asserts.ts": "1e340c589853e82e0807629ba31a43c84ebdcdeca910c4a9705715dfdb0f5ce8", 8 4 "https://deno.land/std@0.175.0/_util/asserts.ts": "178dfc49a464aee693a7e285567b3d0b555dc805ff490505a8aae34f9cfb1462", 9 5 "https://deno.land/std@0.175.0/_util/os.ts": "d932f56d41e4f6a6093d56044e29ce637f8dcc43c5a90af43504a889cf1775e3", 10 6 "https://deno.land/std@0.175.0/async/abortable.ts": "73acfb3ed7261ce0d930dbe89e43db8d34e017b063cf0eaa7d215477bf53442e", ··· 140 136 "https://deno.land/std@0.177.0/encoding/_toml/parser.ts": "a932beaf8e65af821c7ff36ff38f6fde3ab8d24a8a79c7ca6fe2e7a920c39804", 141 137 "https://deno.land/std@0.177.0/encoding/toml.ts": "d11fc659365218035ec1d92c1dfa206718838954a6de7cfc62d0a07ffb19f582", 142 138 "https://deno.land/std@0.177.0/flags/mod.ts": "d1cdefa18472ef69858a17df5cf7c98445ed27ac10e1460183081303b0ebc270", 139 + "https://deno.land/std@0.177.0/fmt/colors.ts": "938c5d44d889fb82eff6c358bea8baa7e85950a16c9f6dae3ec3a7a729164471", 143 140 "https://deno.land/std@0.177.0/path/_constants.ts": "e49961f6f4f48039c0dfed3c3f93e963ca3d92791c9d478ac5b43183413136e0", 144 141 "https://deno.land/std@0.177.0/path/_interface.ts": "6471159dfbbc357e03882c2266d21ef9afdb1e4aa771b0545e90db58a0ba314b", 145 142 "https://deno.land/std@0.177.0/path/_util.ts": "d7abb1e0dea065f427b89156e28cdeb32b045870acdf865833ba808a73b576d0", ··· 149 146 "https://deno.land/std@0.177.0/path/posix.ts": "8b7c67ac338714b30c816079303d0285dd24af6b284f7ad63da5b27372a2c94d", 150 147 "https://deno.land/std@0.177.0/path/separator.ts": "0fb679739d0d1d7bf45b68dacfb4ec7563597a902edbaf3c59b50d5bcadd93b1", 151 148 "https://deno.land/std@0.177.0/path/win32.ts": "d186344e5583bcbf8b18af416d13d82b35a317116e6460a5a3953508c3de5bba", 149 + "https://deno.land/std@0.177.0/testing/_diff.ts": "1a3c044aedf77647d6cac86b798c6417603361b66b54c53331b312caeb447aea", 150 + "https://deno.land/std@0.177.0/testing/_format.ts": "a69126e8a469009adf4cf2a50af889aca364c349797e63174884a52ff75cf4c7", 151 + "https://deno.land/std@0.177.0/testing/asserts.ts": "984ab0bfb3faeed92ffaa3a6b06536c66811185328c5dd146257c702c41b01ab", 152 152 "https://esm.sh/date.js@0.3.3": "7c5c5b2fdfaa3d3e9b8dd003779cbc62ff0d089cc54641f78788ca366e889388", 153 153 "https://esm.sh/luxon@3.2.1": "fab30698360387531c8632e1f83647b1b69d70b5758adf6e120266620df27420", 154 154 "https://esm.sh/v106/@types/luxon@3.2.0/index.d.ts": "ab84fb44a5f396a5f72b521fdfc10ea787b9f43ce4fbb190ab94f2d1ece40e60",
+1 -1
test.ts
··· 1 - import { assertEquals } from "https://deno.land/std@0.164.0/testing/asserts.ts"; 1 + import { assertEquals } from "https://deno.land/std@0.177.0/testing/asserts.ts"; 2 2 3 3 import { makeEntry, parseEntries, renderEntry } from "./mod.ts"; 4 4