Skip to content

Commit 9900816

Browse files
committed
chore: format code
1 parent 9cb31ba commit 9900816

File tree

2 files changed

+2
-6
lines changed

2 files changed

+2
-6
lines changed

packages/cli/src/cli/cmd/run/execute.ts

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -286,10 +286,7 @@ function createWorkerTask(args: {
286286

287287
if (args.ctx.flags.verbose) {
288288
const changedKeys = Object.keys(
289-
_.omitBy(
290-
finalRenamedTargetData,
291-
(v, k) => v === targetData[k],
292-
),
289+
_.omitBy(finalRenamedTargetData, (v, k) => v === targetData[k]),
293290
);
294291
subTask.output = `Changed keys: ${changedKeys.length}\n${JSON.stringify(changedKeys, null, 2)}`;
295292
}

packages/cli/src/cli/cmd/run/index.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -183,8 +183,7 @@ export default new Command()
183183
flags: ctx.flags,
184184
});
185185
} catch (error: any) {
186-
const isFrozenError =
187-
args.frozen && error.message?.includes("i18n.lock");
186+
const isFrozenError = args.frozen && error.message?.includes("i18n.lock");
188187
await trackEvent(authId || "unknown", "cmd.run.error", {
189188
errorType: isFrozenError ? "frozen_mismatch" : undefined,
190189
});

0 commit comments

Comments
 (0)