From 42f1f6611788253a9e1023e1f620177d14a93b3f Mon Sep 17 00:00:00 2001 From: Matt Walsh Date: Wed, 8 Apr 2026 23:36:33 -0500 Subject: [PATCH] squeeze preview format into available space --- gulp/publish-frontend.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gulp/publish-frontend.mjs b/gulp/publish-frontend.mjs index d7e76a2..67d17ed 100644 --- a/gulp/publish-frontend.mjs +++ b/gulp/publish-frontend.mjs @@ -113,7 +113,7 @@ let { version } = JSON.parse(packageJson); const previewVersion = async () => { // generate a unique timestamp for cache invalidation of the preview site const now = DateTime.utc(); - version = now.toFormat('yyyyLLddHHmmss') + version = now.toFormat('yyyyLLddHHmm').substring(3); }; const compressHtml = async () => src(htmlSources)