Skip to content

Commit b38c5a8

Browse files
committed
build: align pi fallback version
1 parent 3c8f3cd commit b38c5a8

1 file changed

Lines changed: 7 additions & 4 deletions

File tree

scripts/control-ui-i18n.ts

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ const CONTROL_UI_I18N_WORKFLOW = 1;
8888
const DEFAULT_OPENAI_MODEL = "gpt-5.5";
8989
const DEFAULT_ANTHROPIC_MODEL = "claude-opus-4-6";
9090
const DEFAULT_PROVIDER = "openai";
91-
export const DEFAULT_PI_PACKAGE_VERSION = "0.75.4";
91+
export const DEFAULT_PI_PACKAGE_VERSION = "0.75.5";
9292
const PI_PACKAGE_NAME = "@earendil-works/pi-coding-agent";
9393
const HERE = path.dirname(fileURLToPath(import.meta.url));
9494
const ROOT = path.resolve(HERE, "..");
@@ -1182,9 +1182,12 @@ async function runProcessCommand(
11821182

11831183
async function formatGeneratedTypeScript(filePath: string, source: string): Promise<string> {
11841184
const result = await runProcessCommand(
1185-
resolveControlUiI18nPnpmCommand(
1186-
["exec", "oxfmt", "--stdin-filepath", path.relative(ROOT, filePath)],
1187-
),
1185+
resolveControlUiI18nPnpmCommand([
1186+
"exec",
1187+
"oxfmt",
1188+
"--stdin-filepath",
1189+
path.relative(ROOT, filePath),
1190+
]),
11881191
{
11891192
input: source,
11901193
rejectOnFailure: true,

0 commit comments

Comments
 (0)