Skip to content

Commit b65eca5

Browse files
committed
Update util.ts
1 parent f7595c5 commit b65eca5

File tree

1 file changed

+5
-13
lines changed

1 file changed

+5
-13
lines changed

src/util.ts

Lines changed: 5 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,9 @@
1-
import { glob, readFile, readdir, unlink, writeFile } from "fs/promises";
2-
import { join } from "path";
3-
4-
5-
6-
import type { Browser } from "playwright";
7-
8-
9-
10-
import { ARCHIVE_DIR, HOOK_SCRIPT, SCRIPT, ZIP_SCRIPT } from "./constants.js";
11-
12-
1+
import { glob, readFile, readdir, unlink, writeFile } from "fs/promises"
2+
import { join } from "path"
133

4+
import type { Browser } from "playwright"
145

6+
import { ARCHIVE_DIR, HOOK_SCRIPT, SCRIPT, ZIP_SCRIPT } from "./constants.js"
157

168
export async function getGeminiIdsFromMarkdowns(): Promise<Set<string>> {
179
const ids = new Set<string>()
@@ -161,4 +153,4 @@ export function buildCommitMessage(added: string[], deleted: string[]): string {
161153
if (deleted.length > 0) msg += `\nDeleted conversations: ${deleted.join(", ")}`
162154

163155
return msg
164-
}
156+
}

0 commit comments

Comments
 (0)