* Source of truth for the /examples page. * * Each sandbox lives at `demo/src/sandboxes/ /` with a `package.json` * (name, description, keywords) and a `thumbnail.png`. We pull everything in * at build time via Vite's `import.meta.glob` — adding a new sandbox folder * to the demo workspace
| 14 | */ |
| 15 | |
| 16 | interface RawPackage { |
| 17 | name?: string |
| 18 | description?: string |
| 19 | keywords?: string[] |
| 20 | } |
| 21 | |
| 22 | const FOLDER_TO_CSB_ID: Record<string, string | null> = { |
| 23 | 'animating-auto': 'ucvbf', |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…