9ec09e2b1b
Unlike "Clear content" (which deletes both the raw ingested items and the published articles), reissue keeps the raw content_items and only deletes the articles built from them, resetting cluster_id so those items get picked up and republished by the very next scheduler tick. This is for picking up pipeline/rendering changes on already-ingested content without depending on the source feed to serve the same items again — Nitter/Twitter in particular won't reliably resurface an old tweet on a fresh poll. Same multi-source protection as clearing: an article merged from this source's items together with another source's is left alone entirely, since undoing just one contributor's share of a merge isn't supported. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_014c1L8ghNBFjfiH64UMViP8
sv
Everything you need to build a Svelte project, powered by sv.
Creating a project
If you're seeing this, you've probably already done this step. Congrats!
# create a new project
npx sv create my-app
To recreate this project with the same configuration:
# recreate this project
npx sv@0.16.2 create --template minimal --types ts --install npm frontend
Developing
Once you've created a project and installed dependencies with npm install (or pnpm install or yarn), start a development server:
npm run dev
# or start the server and open the app in a new browser tab
npm run dev -- --open
Building
To create a production version of your app:
npm run build
You can preview the production build with npm run preview.
To deploy your app, you may need to install an adapter for your target environment.