Implement generateThemeVariants

This commit is contained in:
Joseph Garrone
2024-05-12 21:23:20 +02:00
parent 5a7d452429
commit 824076f730
6 changed files with 73 additions and 44 deletions

View File

@ -29,7 +29,7 @@ export async function main() {
fs.writeFileSync(pathJoin(buildOptions.keycloakifyBuildDirPath, ".gitignore"), Buffer.from("*", "utf8"));
}
const { implementedThemeTypes } = await generateTheme({
const { doesImplementAccountTheme } = await generateTheme({
themeSrcDirPath,
"keycloakifySrcDirPath": pathJoin(getThisCodebaseRootDirPath(), "src"),
"keycloakifyVersion": readThisNpmProjectVersion(),
@ -51,7 +51,7 @@ export async function main() {
}
const { lastJarFileBasename } = await buildJars({
"doImplementAccountTheme": implementedThemeTypes.account,
doesImplementAccountTheme,
buildOptions
});