experiments in a post-browser web
10
fork

Configure Feed

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

fix(schema): make codegen deterministic to avoid spurious diffs

Remove generated timestamp lines from codegen output. These timestamps
change on every run, causing files to appear modified even when source
schema hasn't changed. The generated files still include schema version
and the regeneration command for reference.

-7
-3
schema/codegen.js
··· 43 43 const lines = []; 44 44 lines.push('-- Generated by schema/codegen.js'); 45 45 lines.push(`-- Schema version: ${schema.version}`); 46 - lines.push(`-- Generated: ${new Date().toISOString()}`); 47 46 lines.push('-- DO NOT EDIT - regenerate with: yarn schema:codegen'); 48 47 lines.push(''); 49 48 ··· 95 94 lines.push('/**'); 96 95 lines.push(' * Generated by schema/codegen.js'); 97 96 lines.push(` * Schema version: ${schema.version}`); 98 - lines.push(` * Generated: ${new Date().toISOString()}`); 99 97 lines.push(' * DO NOT EDIT - regenerate with: yarn schema:codegen'); 100 98 lines.push(' */'); 101 99 lines.push(''); ··· 146 144 const lines = []; 147 145 lines.push('// Generated by schema/codegen.js'); 148 146 lines.push(`// Schema version: ${schema.version}`); 149 - lines.push(`// Generated: ${new Date().toISOString()}`); 150 147 lines.push('// DO NOT EDIT - regenerate with: yarn schema:codegen'); 151 148 lines.push(''); 152 149 lines.push('use serde::{Deserialize, Serialize};');
-1
schema/generated/sqlite-full.sql
··· 1 1 -- Generated by schema/codegen.js 2 2 -- Schema version: 1 3 - -- Generated: 2026-02-04T16:01:13.308Z 4 3 -- DO NOT EDIT - regenerate with: yarn schema:codegen 5 4 6 5 -- Unified content storage - URLs, text notes, tagsets, and images
-1
schema/generated/sqlite-sync.sql
··· 1 1 -- Generated by schema/codegen.js 2 2 -- Schema version: 1 3 - -- Generated: 2026-02-04T16:01:13.309Z 4 3 -- DO NOT EDIT - regenerate with: yarn schema:codegen 5 4 6 5 -- Unified content storage - URLs, text notes, tagsets, and images
-1
schema/generated/types.rs
··· 1 1 // Generated by schema/codegen.js 2 2 // Schema version: 1 3 - // Generated: 2026-02-04T16:01:13.310Z 4 3 // DO NOT EDIT - regenerate with: yarn schema:codegen 5 4 6 5 use serde::{Deserialize, Serialize};
-1
schema/generated/types.ts
··· 1 1 /** 2 2 * Generated by schema/codegen.js 3 3 * Schema version: 1 4 - * Generated: 2026-02-04T16:01:13.310Z 5 4 * DO NOT EDIT - regenerate with: yarn schema:codegen 6 5 */ 7 6