File tree Expand file tree Collapse file tree 3 files changed +9
-1
lines changed
Expand file tree Collapse file tree 3 files changed +9
-1
lines changed Original file line number Diff line number Diff line change @@ -161,3 +161,4 @@ public/fonts/
161161* .cpuprofile
162162.claude /settings.local.json
163163.worktrees
164+ public /modestbench-config.schema.json
Original file line number Diff line number Diff line change 9494 "clean" : " rm -rf dist" ,
9595 "commitlint" : " commitlint" ,
9696 "dev" : " zshy --watch" ,
97- "docs:build" : " run-s docs:copy astro:build" ,
97+ "docs:build" : " run-s build:schema docs:copy astro:build" ,
9898 "docs:copy" : " tsx scripts/copy-docs.ts" ,
9999 "docs:dev" : " run-s docs:copy astro:dev" ,
100100 "docs:preview" : " astro preview --config astro.config.js" ,
Original file line number Diff line number Diff line change @@ -55,6 +55,13 @@ copyFileSync(
5555) ;
5656console . log ( '✓ Copied HandelGothic Regular.woff2 → public/fonts/' ) ;
5757
58+ // Copy JSON schema to public for serving at site root
59+ copyFileSync (
60+ join ( rootDir , 'dist/schema/modestbench-config.schema.json' ) ,
61+ join ( publicDir , 'modestbench-config.schema.json' ) ,
62+ ) ;
63+ console . log ( '✓ Copied modestbench-config.schema.json → public/' ) ;
64+
5865// Files to copy with their frontmatter
5966const files : DocFile [ ] = [
6067 {
You can’t perform that action at this time.
0 commit comments