mirror of
https://github.com/LukeHagar/website.git
synced 2025-12-06 04:22:07 +00:00
13 lines
292 B
JavaScript
13 lines
292 B
JavaScript
import { fileURLToPath } from 'url';
|
|
import { build } from 'vite';
|
|
import { downloadContributors } from './download-contributor-data.js';
|
|
|
|
const __dirname = fileURLToPath(new URL('.', import.meta.url));
|
|
|
|
async function main() {
|
|
await downloadContributors();
|
|
await build();
|
|
}
|
|
|
|
main();
|