From 9cfc8a4429636bd9667fc0abff6bd95d2bc59fd2 Mon Sep 17 00:00:00 2001 From: jansilhan Date: Wed, 18 Mar 2026 11:10:03 +0100 Subject: [PATCH 1/2] fix exports --- apps/oxfmt/src-js/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/oxfmt/src-js/index.ts b/apps/oxfmt/src-js/index.ts index 248e2e87cc1cb..6a7d2243fee15 100644 --- a/apps/oxfmt/src-js/index.ts +++ b/apps/oxfmt/src-js/index.ts @@ -22,7 +22,7 @@ import type { // The same naming convention as `oxlint` for consistency export type OxfmtConfig = Oxfmtrc; -export type { FormatConfig } from "./config.generated"; +export type { FormatConfig, SortImportsConfig, SortPackageJsonConfig, SortTailwindcssConfig } from "./config.generated"; // Backward-compatible type aliases using `Options` suffix. From f1e6e3fbb3bdf1f3c8993b2148997d0441e33291 Mon Sep 17 00:00:00 2001 From: jansilhan Date: Wed, 18 Mar 2026 11:15:27 +0100 Subject: [PATCH 2/2] Add one missing export and run format --- apps/oxfmt/src-js/index.ts | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/apps/oxfmt/src-js/index.ts b/apps/oxfmt/src-js/index.ts index 6a7d2243fee15..8ded5ed4a8f53 100644 --- a/apps/oxfmt/src-js/index.ts +++ b/apps/oxfmt/src-js/index.ts @@ -22,7 +22,13 @@ import type { // The same naming convention as `oxlint` for consistency export type OxfmtConfig = Oxfmtrc; -export type { FormatConfig, SortImportsConfig, SortPackageJsonConfig, SortTailwindcssConfig } from "./config.generated"; +export type { + FormatConfig, + SortImportsConfig, + SortPackageJsonConfig, + SortTailwindcssConfig, + OxfmtOverrideConfig, +} from "./config.generated"; // Backward-compatible type aliases using `Options` suffix.