Refactor: derive version from package.json
parent
c251681a40
commit
20fc412765
|
|
@ -8,6 +8,7 @@ import { danger, info, setVerbose, setYes, warn } from "../globals.js";
|
|||
import { loginWeb, monitorWebProvider, pickProvider } from "../provider-web.js";
|
||||
import { defaultRuntime } from "../runtime.js";
|
||||
import type { Provider } from "../utils.js";
|
||||
import { VERSION } from "../version.js";
|
||||
import {
|
||||
createDefaultDeps,
|
||||
logTwilioFrom,
|
||||
|
|
@ -18,7 +19,7 @@ import { spawnRelayTmux } from "./relay_tmux.js";
|
|||
|
||||
export function buildProgram() {
|
||||
const program = new Command();
|
||||
const PROGRAM_VERSION = "0.1.4";
|
||||
const PROGRAM_VERSION = VERSION;
|
||||
const TAGLINE =
|
||||
"Send, receive, and auto-reply on WhatsApp—Twilio-backed or QR-linked.";
|
||||
|
||||
|
|
|
|||
|
|
@ -23,6 +23,7 @@ import { saveMediaBuffer } from "./media/store.js";
|
|||
import { defaultRuntime, type RuntimeEnv } from "./runtime.js";
|
||||
import type { Provider } from "./utils.js";
|
||||
import { ensureDir, jidToE164, toWhatsappJid } from "./utils.js";
|
||||
import { VERSION } from "./version.js";
|
||||
|
||||
function formatDuration(ms: number) {
|
||||
return ms >= 1000 ? `${(ms / 1000).toFixed(2)}s` : `${ms}ms`;
|
||||
|
|
@ -53,7 +54,7 @@ export async function createWaSocket(printQr: boolean, verbose: boolean) {
|
|||
version,
|
||||
logger,
|
||||
printQRInTerminal: false,
|
||||
browser: ["warelay", "cli", "0.1.4"],
|
||||
browser: ["warelay", "cli", VERSION],
|
||||
syncFullHistory: false,
|
||||
markOnlineOnConnect: false,
|
||||
});
|
||||
|
|
|
|||
|
|
@ -0,0 +1,7 @@
|
|||
import { createRequire } from "node:module";
|
||||
|
||||
const require = createRequire(import.meta.url);
|
||||
const pkg = require("../package.json") as { version?: string };
|
||||
|
||||
// Single source of truth for the current warelay version (reads from package.json).
|
||||
export const VERSION = pkg.version ?? "0.0.0";
|
||||
Loading…
Reference in New Issue