this repo has no description
0
fork

Configure Feed

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

Add 'ignore' and 'ready_to_ship' project statuses

Extends ProjectStatus type with two new statuses:
- ready_to_ship: for projects that are complete but not yet deployed
- ignore: for projects that should be hidden from normal views

Also removes duplicate ProjectStatus definition.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>

alice f7ff72b4 0de18cda

+2 -3
+2 -3
src/types.ts
··· 122 122 processed_at: string; 123 123 } 124 124 125 - // Project types 126 - export type ProjectStatus = 'shipped' | 'in_progress' | 'abandoned' | 'one_off' | 'experiment'; 127 - 128 125 export interface ProjectListItem { 129 126 path: string; 130 127 name: string; ··· 173 170 export type ProjectStatus = 174 171 | 'shipped' 175 172 | 'in_progress' 173 + | 'ready_to_ship' 176 174 | 'abandoned' 175 + | 'ignore' 177 176 | 'one_off' 178 177 | 'experiment'; 179 178