Skip to content

Commit b6f0a6a

Browse files
authored
Merge pull request #69 from weroperking/codex/cli-iac-and-config-refactor
refactor(cli): add IaC sync/generate commands, centralize config loading, improve auth check
2 parents daf8161 + d99e5e6 commit b6f0a6a

16 files changed

Lines changed: 1440 additions & 762 deletions

docs/testing/test-suite-upgrade.md

Lines changed: 946 additions & 0 deletions
Large diffs are not rendered by default.

packages/cli/src/commands/auth.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -449,7 +449,7 @@ export async function runAuthAddProviderCommand(
449449
: `# ${template.displayName} OAuth\n${envVarsToAdd.join("\n")}\n`;
450450

451451
writeFileSync(envFile, newEnv, "utf-8");
452-
logger.success(`✅ Added env vars to .env`);
452+
logger.success("\u2705 Added env vars to .env");
453453
}
454454

455455
// Print setup instructions
@@ -459,7 +459,7 @@ export async function runAuthAddProviderCommand(
459459
authUrl,
460460
);
461461

462-
console.log("\n" + "=".repeat(60));
462+
console.log(`\n${"=".repeat(60)}`);
463463
console.log(`${template.displayName} OAuth Setup Instructions:`);
464464
console.log(instructions);
465465
console.log("=".repeat(60));

0 commit comments

Comments
 (0)