From 3689cfcc0d1806e0cc11c67ecbec3f797365b475 Mon Sep 17 00:00:00 2001 From: Joseph Garrone Date: Sun, 23 Jun 2024 02:06:45 +0200 Subject: [PATCH] Consistency --- .../keycloakify/generateResources/bringInAccountV1.ts | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/bin/keycloakify/generateResources/bringInAccountV1.ts b/src/bin/keycloakify/generateResources/bringInAccountV1.ts index adfaedf9..d32e9a3f 100644 --- a/src/bin/keycloakify/generateResources/bringInAccountV1.ts +++ b/src/bin/keycloakify/generateResources/bringInAccountV1.ts @@ -7,13 +7,13 @@ import { lastKeycloakVersionWithAccountV1, accountV1ThemeName } from "../../shared/constants"; -import { downloadKeycloakDefaultTheme } from "../../shared/downloadKeycloakDefaultTheme"; +import { + downloadKeycloakDefaultTheme, + BuildContextLike as BuildContextLike_downloadKeycloakDefaultTheme +} from "../../shared/downloadKeycloakDefaultTheme"; import { transformCodebase } from "../../tools/transformCodebase"; -export type BuildContextLike = { - cacheDirPath: string; - npmWorkspaceRootDirPath: string; -}; +export type BuildContextLike = BuildContextLike_downloadKeycloakDefaultTheme; assert();