mirror of
https://github.com/umami-software/umami.git
synced 2025-12-06 01:18:00 +01:00
Switched to type: module.
This commit is contained in:
parent
615a6d444f
commit
4e37e10b6d
20 changed files with 25 additions and 50 deletions
10
scripts/postbuild.js
Normal file
10
scripts/postbuild.js
Normal 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();
|
||||
Loading…
Add table
Add a link
Reference in a new issue