* refactor: apply biome formatting to Phase 1 packages Packages formatted: - packages/app-store-cli - packages/config - packages/dayjs - packages/debugging - packages/embeds/embed-react - packages/embeds/embed-snippet - packages/kysely - packages/platform/constants - packages/platform/utils - packages/testing - packages/tsconfig Co-Authored-By: eunjae@cal.com <hey@eunjae.dev> * fix: restore non-null assertions in embed-snippet to fix type error Co-Authored-By: eunjae@cal.com <hey@eunjae.dev> * fix: remove ESM import from CommonJS config file Biome incorrectly added 'import process from node:process' to a CommonJS file that uses require(). This breaks Jest which expects CommonJS syntax. The process global is already available in Node.js without explicit import. Co-Authored-By: eunjae@cal.com <hey@eunjae.dev> * refactor: exclude packages/embeds from Phase 1 formatting Per user request, reverting all biome formatting changes in packages/embeds to handle separately. Co-Authored-By: eunjae@cal.com <hey@eunjae.dev> * fix: restore const enum for BookingLocations Biome changed 'const enum' to 'enum' which is a semantic change. Reverting to keep the PR purely formatting-only. Co-Authored-By: eunjae@cal.com <hey@eunjae.dev> --------- Co-authored-by: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com>
32 lines
1017 B
TypeScript
32 lines
1017 B
TypeScript
/* eslint-disable @calcom/eslint/deprecated-imports */
|
|
import dayjs from "dayjs";
|
|
import customParseFormat from "dayjs/plugin/customParseFormat";
|
|
import duration from "dayjs/plugin/duration";
|
|
import isBetween from "dayjs/plugin/isBetween";
|
|
import isToday from "dayjs/plugin/isToday";
|
|
import localizedFormat from "dayjs/plugin/localizedFormat";
|
|
import minmax from "dayjs/plugin/minMax";
|
|
import relativeTime from "dayjs/plugin/relativeTime";
|
|
import timeZone from "dayjs/plugin/timezone";
|
|
import toArray from "dayjs/plugin/toArray";
|
|
import utc from "dayjs/plugin/utc";
|
|
import BusinessDaysPlugin from "./plugins/business-days-plugin";
|
|
|
|
dayjs.extend(customParseFormat);
|
|
dayjs.extend(BusinessDaysPlugin);
|
|
dayjs.extend(isBetween);
|
|
dayjs.extend(isToday);
|
|
dayjs.extend(localizedFormat);
|
|
dayjs.extend(relativeTime);
|
|
dayjs.extend(timeZone);
|
|
dayjs.extend(toArray);
|
|
dayjs.extend(utc);
|
|
dayjs.extend(minmax);
|
|
dayjs.extend(duration);
|
|
|
|
export type Dayjs = dayjs.Dayjs;
|
|
|
|
export type { ConfigType } from "dayjs";
|
|
|
|
export default dayjs;
|