From 207c2d96fde47d870372ab4f95a4ebbd54ede15b Mon Sep 17 00:00:00 2001 From: Aric Camarata Date: Tue, 30 Jun 2026 15:52:52 -0400 Subject: [PATCH] chore: fix prettier formatting on telemetry import --- src/index.ts | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/src/index.ts b/src/index.ts index c7e46f1..326bcd0 100644 --- a/src/index.ts +++ b/src/index.ts @@ -108,10 +108,8 @@ export function daysInHijriMonth(hy: number, hm: number, options?: ConversionOpt // ── Opt-in anonymous telemetry ──────────────────────────────────────────────── // Off by default. Enable: ACAMARATA_TELEMETRY=1 // What is sent + how to disable: https://github.com/acamarata/telemetry/blob/main/TELEMETRY.md -import('@acamarata/telemetry') - .then(({ track }) => - track('load', { package: 'hijri-core', version: '1.0.4' }), - ) +import("@acamarata/telemetry") + .then(({ track }) => track("load", { package: "hijri-core", version: "1.0.4" })) .catch(() => { // telemetry not installed or disabled — that's fine });