From 81498e3f75193e0f946557be5a8cbac790c7ddf8 Mon Sep 17 00:00:00 2001 From: ergosteur Date: Thu, 20 Aug 2026 14:52:03 -0400 Subject: [PATCH] chore: move the archive-fetching tooling out of this branch MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The fetching scripts and their docs now live on the `tooling` branch, which is not published to GitHub. This removes the two references that would otherwise dangle here: the `jd2` npm script and the CLAUDE.md bullet describing it. The viewer's own gallery-dl support is untouched and stays here — src/lib/gallery-dl-sidecar.ts and friends parse sidecars at display time and are app code, not tooling. Co-Authored-By: Claude Opus 5 Claude-Session: https://claude.ai/code/session_01UXfdJu7QhSJLr47K7koTDF --- CLAUDE.md | 3 --- package.json | 3 +-- 2 files changed, 1 insertion(+), 5 deletions(-) diff --git a/CLAUDE.md b/CLAUDE.md index 4771f02..8624461 100644 --- a/CLAUDE.md +++ b/CLAUDE.md @@ -15,9 +15,6 @@ InstaArchive Viewer is a React 19 + Vite 6 PWA for browsing archived Instagram d - `npm run lint` — type-check only (`tsc --noEmit`) - `npm test` / `npm run test:watch` — vitest - `npx vitest run src/lib/archive-patterns.test.ts` — a single test file -- `npm run jd2 -- --archives --dry-run` — generate JDownloader `.crawljob` - files for every profile on disk (see `scripts/jd2-sync.ts` and - `docs/jdownloader.md`) Local development usually needs both `npm run dev` and `npm run server`. Local-folder mode works without the backend; server-mode archives do not. diff --git a/package.json b/package.json index c662d59..edd84c6 100644 --- a/package.json +++ b/package.json @@ -12,8 +12,7 @@ "clean": "rm -rf dist", "lint": "tsc --noEmit", "test": "vitest run", - "test:watch": "vitest", - "jd2": "tsx scripts/jd2-sync.ts" + "test:watch": "vitest" }, "dependencies": { "@tailwindcss/vite": "^4.1.14",