Consistency

This commit is contained in:
Joseph Garrone
2024-06-23 02:06:45 +02:00
parent b73eceb535
commit 3689cfcc0d

View File

@ -7,13 +7,13 @@ import {
lastKeycloakVersionWithAccountV1, lastKeycloakVersionWithAccountV1,
accountV1ThemeName accountV1ThemeName
} from "../../shared/constants"; } from "../../shared/constants";
import { downloadKeycloakDefaultTheme } from "../../shared/downloadKeycloakDefaultTheme"; import {
downloadKeycloakDefaultTheme,
BuildContextLike as BuildContextLike_downloadKeycloakDefaultTheme
} from "../../shared/downloadKeycloakDefaultTheme";
import { transformCodebase } from "../../tools/transformCodebase"; import { transformCodebase } from "../../tools/transformCodebase";
export type BuildContextLike = { export type BuildContextLike = BuildContextLike_downloadKeycloakDefaultTheme;
cacheDirPath: string;
npmWorkspaceRootDirPath: string;
};
assert<BuildContext extends BuildContextLike ? true : false>(); assert<BuildContext extends BuildContextLike ? true : false>();