mirror of
https://github.com/LukeHagar/website.git
synced 2025-12-06 12:57:48 +00:00
10 lines
190 B
JavaScript
10 lines
190 B
JavaScript
import { build } from 'vite';
|
|
import { downloadContributors } from './download-contributor-data.js';
|
|
|
|
async function main() {
|
|
await downloadContributors();
|
|
await build();
|
|
}
|
|
|
|
main();
|