Switched to type: module.

This commit is contained in:
Mike Cao 2025-04-29 14:36:52 -07:00
parent 615a6d444f
commit 4e37e10b6d
20 changed files with 25 additions and 50 deletions

10
scripts/postbuild.js Normal file
View file

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