@synth1s/cloak 1.9.7 → 1.9.9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@synth1s/cloak",
3
- "version": "1.9.7",
3
+ "version": "1.9.9",
4
4
  "description": "Cloak your Claude. Switch identities in seconds.",
5
5
  "type": "module",
6
6
  "bin": {
@@ -30,6 +30,8 @@ export async function switchAccount(name, options = {}) {
30
30
 
31
31
  if (options.printEnv) {
32
32
  process.stdout.write(msg.printEnvExport(dir))
33
+ // Confirmation to stderr so it doesn't interfere with eval
34
+ process.stderr.write(msg.cloakSwitched(name) + '\n')
33
35
  return
34
36
  }
35
37