Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | import { mkdirSync, writeFileSync } from 'node:fs';
import { join } from 'node:path';
export function setupAccountConfigDir(
configDir: string,
extracted: { configJson: object; credentials: string },
): void {
mkdirSync(configDir, { recursive: true });
// Write .claude.json
writeFileSync(join(configDir, '.claude.json'), JSON.stringify(extracted.configJson, null, 2));
// Write .credentials.json
writeFileSync(join(configDir, '.credentials.json'), extracted.credentials);
}
|