| 1 | #!/usr/bin/env node |
| 2 | |
| 3 | const notice = [ |
| 4 | "", |
| 5 | " ╭───────────────────────────────────────────────────────────────────╮", |
| 6 | " │ │", |
| 7 | " │ deepseek-tui has been renamed to `codewhale`. │", |
| 8 | " │ │", |
| 9 | " │ Please uninstall this package and install codewhale instead: │", |
| 10 | " │ │", |
| 11 | " │ npm uninstall -g deepseek-tui │", |
| 12 | " │ npm install -g codewhale │", |
| 13 | " │ │", |
| 14 | " │ codewhale ships the same `codewhale` and `codewhale-tui` │", |
| 15 | " │ binaries plus deprecation shims under the old names. See: │", |
| 16 | " │ https://github.com/Hmbown/CodeWhale/blob/main/docs/REBRAND.md │", |
| 17 | " │ │", |
| 18 | " ╰───────────────────────────────────────────────────────────────────╯", |
| 19 | "", |
| 20 | ].join("\n"); |
| 21 | |
| 22 | process.stderr.write(notice); |
| 23 |