From ddac2fb7a143e6095305f5b99b6ac0429923f3a7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E3=81=8B=E3=81=A3=E3=81=93=E3=81=8B=E3=82=8A?= <67428053+kakkokari-gtyih@users.noreply.github.com> Date: Sat, 9 Aug 2025 14:26:03 +0900 Subject: [PATCH] =?UTF-8?q?fix(frontend-builder):=20=E8=A8=80=E8=AA=9E?= =?UTF-8?q?=E3=83=90=E3=83=B3=E3=83=89=E3=83=AB=E3=81=AE=E4=BD=9C=E6=88=90?= =?UTF-8?q?=E7=8A=B6=E6=B3=81=E3=81=8C=E3=83=AD=E3=82=B0=E3=81=AB=E6=AE=8B?= =?UTF-8?q?=E3=82=8B=E3=82=88=E3=81=86=E3=81=AB=20(#16385)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/frontend-builder/locale-inliner.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/packages/frontend-builder/locale-inliner.ts b/packages/frontend-builder/locale-inliner.ts index 75bcdc5b3f..9bef465eeb 100644 --- a/packages/frontend-builder/locale-inliner.ts +++ b/packages/frontend-builder/locale-inliner.ts @@ -69,8 +69,10 @@ export class LocaleInliner { async saveAllLocales(locales: Record) { const localeNames = Object.keys(locales); for (const localeName of localeNames) { + this.logger.info(`Creating bundle for ${localeName}`); await this.saveLocale(localeName, locales[localeName]); } + this.logger.info('Done'); } async saveLocale(localeName: string, localeJson: Locale) {