This commit is contained in:
garronej 2023-01-08 14:57:18 +01:00
parent d4523bb1e6
commit 49b87777f9
3 changed files with 5 additions and 5 deletions

View File

@ -21,7 +21,7 @@ for (const keycloakVersion of ["11.0.3", "15.0.2", "18.0.1"]) {
const tmpDirPath = pathJoin(getProjectRoot(), "tmp_xImOef9dOd44");
fs.rmSync(tmpDirPath, {recursive: true, force: true});
fs.rmSync(tmpDirPath, { "recursive": true, "force": true });
downloadBuiltinKeycloakTheme({
keycloakVersion,
@ -53,7 +53,7 @@ for (const keycloakVersion of ["11.0.3", "15.0.2", "18.0.1"]) {
});
}
fs.rmSync(tmpDirPath, {recursive: true, force: true});
fs.rmSync(tmpDirPath, { recursive: true, force: true });
Object.keys(record).forEach(pageType => {
const recordForPageType = record[pageType];

View File

@ -43,7 +43,7 @@ const commonThirdPartyDeps = (() => {
const yarnHomeDirPath = pathJoin(keycloakifyDirPath, ".yarn_home");
fs.rmSync(yarnHomeDirPath, {recursive: true, force: true});
fs.rmSync(yarnHomeDirPath, { "recursive": true, "force": true });
fs.mkdirSync(yarnHomeDirPath);
const execYarnLink = (params: { targetModuleName?: string; cwd: string }) => {

View File

@ -53,7 +53,7 @@ export function downloadAndUnzip(params: {
[extractDirPath]: false
});
fs.rmSync(extractDirPath, {recursive: true, force: true});
fs.rmSync(extractDirPath, { "recursive": true, "force": true });
fs.mkdirSync(extractDirPath);
@ -65,7 +65,7 @@ export function downloadAndUnzip(params: {
"cwd": extractDirPath
});
fs.rmSync(pathJoin(extractDirPath, zipFileBasename), {recursive: true, force: true});
fs.rmSync(pathJoin(extractDirPath, zipFileBasename), { "recursive": true, "force": true });
writeIsSuccessByExtractDirPath({
...isSuccessByExtractDirPath,