chore: bump to 0.1.2 and fix commander typings

This commit is contained in:
Peter Steinberger
2025-11-25 14:26:55 +01:00
parent dd55a80430
commit 80d9d288c2
4 changed files with 11 additions and 4 deletions

View File

@@ -6,6 +6,13 @@
- Added a proper executable shim so `npx warelay@0.1.x --help` runs the CLI directly.
- Help/version banner now uses the README tagline with color, and the help footer includes colored examples with short explanations.
- `send` and `status` gained a `--verbose` flag for consistent noisy output when debugging.
- Lowercased branding in docs/UA; web provider UA is `warelay/cli/0.1.1`.
## 0.1.2 — 2025-11-25
### CI/build fix
- Fixed commander help configuration (`subcommandTerm`) so TypeScript builds pass in CI.
- Bumped version/UA to 0.1.2; no functional changes beyond the CI fix.
## 0.1.0 — 2025-11-25

View File

@@ -1,6 +1,6 @@
{
"name": "warelay",
"version": "0.1.1",
"version": "0.1.2",
"description": "WhatsApp relay CLI (send, monitor, webhook, auto-reply) using Twilio",
"type": "module",
"main": "dist/index.js",

View File

@@ -18,7 +18,7 @@ import { spawnRelayTmux } from "./relay_tmux.js";
export function buildProgram() {
const program = new Command();
const PROGRAM_VERSION = "0.1.1";
const PROGRAM_VERSION = "0.1.2";
const TAGLINE =
"Send, receive, and auto-reply on WhatsApp—Twilio-backed or QR-linked.";
@@ -36,7 +36,7 @@ export function buildProgram() {
program.configureHelp({
optionTerm: (option) => chalk.yellow(option.flags),
commandTerm: (cmd) => chalk.green(cmd.name()),
subcommandTerm: (cmd) => chalk.green(cmd.name()),
});
program.configureOutput({

View File

@@ -48,7 +48,7 @@ export async function createWaSocket(printQr: boolean, verbose: boolean) {
version,
logger,
printQRInTerminal: false,
browser: ["warelay", "cli", "0.1.1"],
browser: ["warelay", "cli", "0.1.2"],
syncFullHistory: false,
markOnlineOnConnect: false,
});