Merge dev.

This commit is contained in:
Mike Cao 2025-04-28 20:09:58 -07:00
commit be1b2fc272
88 changed files with 4120 additions and 21010 deletions

10
scripts/postbuild.mjs Normal file
View file

@ -0,0 +1,10 @@
import 'dotenv/config';
import { sendTelemetry } from './telemetry';
async function run() {
if (!process.env.DISABLE_TELEMETRY) {
await sendTelemetry('build');
}
}
run();