Skip to content

Commit 0dcf4a0

Browse files
committed
fix(changelog): correct generator output path and refresh About data
The generator wrote to src/pages/about/ but the component reads from src/pages/AboutPage/sections/, so pnpm changelog never updated the About page. Fixed the path and regenerated from git — now covers through July.
1 parent 769a9d7 commit 0dcf4a0

2 files changed

Lines changed: 1857 additions & 1179 deletions

File tree

scripts/generate-changelog.mjs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
/**
2-
* Generates src/pages/about/changelogData.json from the real git history.
2+
* Generates src/pages/AboutPage/sections/changelogData.json from the real git
3+
* history.
34
*
45
* Includes only meaningful commits (feat / fix / perf / refactor), drops merges,
56
* and groups them by year → month (both newest-first). The About page's
@@ -13,7 +14,7 @@ import { dirname, resolve } from 'node:path';
1314
import { fileURLToPath } from 'node:url';
1415

1516
const ROOT = resolve(dirname(fileURLToPath(import.meta.url)), '..');
16-
const OUT = resolve(ROOT, 'src/pages/about/changelogData.json');
17+
const OUT = resolve(ROOT, 'src/pages/AboutPage/sections/changelogData.json');
1718

1819
const MONTHS = [
1920
'January',

0 commit comments

Comments
 (0)