mirror of https://github.com/sveltejs/svelte
16 lines
460 B
16 lines
460 B
import { get_examples_data } from '../src/lib/server/examples/index.js';
|
|
import fs from 'node:fs';
|
|
|
|
const examples_data = get_examples_data(
|
|
new URL('../../../documentation/examples', import.meta.url).pathname
|
|
);
|
|
|
|
try {
|
|
fs.mkdirSync(new URL('../src/lib/generated/', import.meta.url), { recursive: true });
|
|
} catch {}
|
|
|
|
fs.writeFileSync(
|
|
new URL('../src/lib/generated/examples-data.js', import.meta.url),
|
|
`export default ${JSON.stringify(examples_data)}`
|
|
);
|