diff --git a/scripts/generate-i18n-messages.ts b/scripts/generate-i18n-messages.ts index 756cef4f..a9596581 100644 --- a/scripts/generate-i18n-messages.ts +++ b/scripts/generate-i18n-messages.ts @@ -24,9 +24,11 @@ async function main() { fs.rmSync(tmpDirPath, { "recursive": true, "force": true }); await downloadBuiltinKeycloakTheme({ - "projectDirPath": getProjectRoot(), keycloakVersion, - "destDirPath": tmpDirPath + "destDirPath": tmpDirPath, + "buildOptions": { + "cacheDirPath": pathJoin(getProjectRoot(), "node_modules", ".cache", "keycloakify") + } }); type Dictionary = { [idiomId: string]: string };