aboutsummaryrefslogtreecommitdiff
path: root/scripts/postbuild.js
blob: 2a4404c74fb9c6b1907f8c1332a9b9ba9716ebcb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
import 'dotenv/config';
import { sendTelemetry } from './telemetry.js';

async function run() {
  if (!process.env.DISABLE_TELEMETRY) {
    await sendTelemetry('build');
  }
}

run();