tangled
alpha
login
or
join now
bitquabit.com
/
hayom
1
fork
atom
A command-line journaling application
1
fork
atom
overview
issues
pulls
pipelines
remove deps.ts and begin prepping for JSR
bitquabit.com
5 months ago
582eff04
01a2531b
verified
This commit was signed with the committer's
known signature
.
bitquabit.com
SSH Key Fingerprint:
SHA256:cKs0OrtrIm7mh+qos4S/TAlJ5ECS///DVwBrlMzguOM=
+6
-7
4 changed files
expand all
collapse all
unified
split
cli.ts
deno.jsonc
deps.ts
mod.ts
+2
-1
cli.ts
reviewed
···
1
1
import { partition } from "@std/collections";
2
2
import * as cli from "@std/cli";
3
3
-
import { DateTime, parseDate } from "./deps.ts";
3
3
+
import { DateTime } from "luxon";
4
4
+
import parseDate from "date.js";
4
5
import { loadConfig } from "./config.ts";
5
6
import {
6
7
Entry,
+3
-1
deno.jsonc
reviewed
···
4
4
"@std/cli": "jsr:@std/cli@^1.0.23",
5
5
"@std/collections": "jsr:@std/collections@^1.1.3",
6
6
"@std/path": "jsr:@std/path@^1.1.2",
7
7
-
"@std/toml": "jsr:@std/toml@^1.0.11"
7
7
+
"@std/toml": "jsr:@std/toml@^1.0.11",
8
8
+
"luxon": "https://esm.sh/luxon@3.4.4",
9
9
+
"date.js": "https://esm.sh/date.js@0.3.3"
8
10
},
9
11
"tasks": {
10
12
"install": "deno install -g -n hayom -A ./cli.ts",
-4
deps.ts
reviewed
···
1
1
-
import { DateTime } from "https://esm.sh/luxon@3.4.4";
2
2
-
import parseDate from "https://esm.sh/date.js@0.3.3";
3
3
-
4
4
-
export { DateTime, parseDate };
+1
-1
mod.ts
reviewed
···
1
1
import { chunk } from "@std/collections";
2
2
-
import { DateTime } from "./deps.ts";
2
2
+
import { DateTime } from "luxon";
3
3
4
4
export interface Entry {
5
5
date: DateTime;