From 49b87777f96696f759a3cadbf24a3c156c7ec790 Mon Sep 17 00:00:00 2001 From: garronej Date: Sun, 8 Jan 2023 14:57:18 +0100 Subject: [PATCH] Fmt --- src/bin/generate-i18n-messages.ts | 4 ++-- src/bin/link_in_test_app.ts | 2 +- src/bin/tools/downloadAndUnzip.ts | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/bin/generate-i18n-messages.ts b/src/bin/generate-i18n-messages.ts index a0bfbeda..f508b70d 100644 --- a/src/bin/generate-i18n-messages.ts +++ b/src/bin/generate-i18n-messages.ts @@ -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]; diff --git a/src/bin/link_in_test_app.ts b/src/bin/link_in_test_app.ts index 4d4703bd..b0f0f666 100644 --- a/src/bin/link_in_test_app.ts +++ b/src/bin/link_in_test_app.ts @@ -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 }) => { diff --git a/src/bin/tools/downloadAndUnzip.ts b/src/bin/tools/downloadAndUnzip.ts index 8ff0a362..9c87fe2e 100644 --- a/src/bin/tools/downloadAndUnzip.ts +++ b/src/bin/tools/downloadAndUnzip.ts @@ -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,