From 6f085c51cc957e80d74ac9a80503edcbd11953be Mon Sep 17 00:00:00 2001 From: Toshit Chawda Date: Fri, 31 Jan 2025 20:13:30 -0800 Subject: [PATCH] dedup by commit hash too --- client-showcase/src/epoxy.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client-showcase/src/epoxy.ts b/client-showcase/src/epoxy.ts index f3942ce..9ea2e20 100644 --- a/client-showcase/src/epoxy.ts +++ b/client-showcase/src/epoxy.ts @@ -2,7 +2,7 @@ import epoxyInit, { EpoxyClient, EpoxyClientOptions, info as epoxyInfo } from "@ import { settings } from "./store"; import { WebSocketStream } from "./loggingws"; -export let epoxyVersion = epoxyInfo.version; +export let epoxyVersion = epoxyInfo.version + epoxyInfo.commit + epoxyInfo.release; const EPOXY_PATH = "/epoxy/epoxy.wasm";