chore: bump to 0.1.2 and fix commander typings
This commit is contained in:
@@ -6,6 +6,13 @@
|
|||||||
- Added a proper executable shim so `npx warelay@0.1.x --help` runs the CLI directly.
|
- 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.
|
- 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.
|
- `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
|
## 0.1.0 — 2025-11-25
|
||||||
|
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "warelay",
|
"name": "warelay",
|
||||||
"version": "0.1.1",
|
"version": "0.1.2",
|
||||||
"description": "WhatsApp relay CLI (send, monitor, webhook, auto-reply) using Twilio",
|
"description": "WhatsApp relay CLI (send, monitor, webhook, auto-reply) using Twilio",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"main": "dist/index.js",
|
"main": "dist/index.js",
|
||||||
|
|||||||
@@ -18,7 +18,7 @@ import { spawnRelayTmux } from "./relay_tmux.js";
|
|||||||
|
|
||||||
export function buildProgram() {
|
export function buildProgram() {
|
||||||
const program = new Command();
|
const program = new Command();
|
||||||
const PROGRAM_VERSION = "0.1.1";
|
const PROGRAM_VERSION = "0.1.2";
|
||||||
const TAGLINE =
|
const TAGLINE =
|
||||||
"Send, receive, and auto-reply on WhatsApp—Twilio-backed or QR-linked.";
|
"Send, receive, and auto-reply on WhatsApp—Twilio-backed or QR-linked.";
|
||||||
|
|
||||||
@@ -36,7 +36,7 @@ export function buildProgram() {
|
|||||||
|
|
||||||
program.configureHelp({
|
program.configureHelp({
|
||||||
optionTerm: (option) => chalk.yellow(option.flags),
|
optionTerm: (option) => chalk.yellow(option.flags),
|
||||||
commandTerm: (cmd) => chalk.green(cmd.name()),
|
subcommandTerm: (cmd) => chalk.green(cmd.name()),
|
||||||
});
|
});
|
||||||
|
|
||||||
program.configureOutput({
|
program.configureOutput({
|
||||||
|
|||||||
@@ -48,7 +48,7 @@ export async function createWaSocket(printQr: boolean, verbose: boolean) {
|
|||||||
version,
|
version,
|
||||||
logger,
|
logger,
|
||||||
printQRInTerminal: false,
|
printQRInTerminal: false,
|
||||||
browser: ["warelay", "cli", "0.1.1"],
|
browser: ["warelay", "cli", "0.1.2"],
|
||||||
syncFullHistory: false,
|
syncFullHistory: false,
|
||||||
markOnlineOnConnect: false,
|
markOnlineOnConnect: false,
|
||||||
});
|
});
|
||||||
|
|||||||
Reference in New Issue
Block a user