From 642cbf422e3c543221d6633042ea2f49fb088aa8 Mon Sep 17 00:00:00 2001 From: Claude Date: Tue, 17 Feb 2026 17:32:13 +0000 Subject: [PATCH 1/2] chore: move voidstrike.gif to docs/ https://claude.ai/code/session_0172J363kooEWWteTsyt5yU8 --- README.md | 2 +- voidstrike.gif => docs/voidstrike.gif | Bin 2 files changed, 1 insertion(+), 1 deletion(-) rename voidstrike.gif => docs/voidstrike.gif (100%) diff --git a/README.md b/README.md index 4d7a7869..bf03d682 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ [![WebGPU](https://img.shields.io/badge/WebGPU-First-green)](https://www.w3.org/TR/webgpu/) [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT) -VOIDSTRIKE gameplay +VOIDSTRIKE gameplay [Play](#quick-start) · [Technical Architecture](#technical-architecture) · [Extractable Libraries](#extractable-libraries) · [For Players](#for-rts-players) diff --git a/voidstrike.gif b/docs/voidstrike.gif similarity index 100% rename from voidstrike.gif rename to docs/voidstrike.gif From 60cc88231ef0825ff943a0eb3d077c7baf314cd8 Mon Sep 17 00:00:00 2001 From: Claude Date: Tue, 17 Feb 2026 17:32:44 +0000 Subject: [PATCH 2/2] fix: make BeforeInstallPromptEvent a global ambient type Remove export {} so the .d.ts is treated as an ambient declaration file, making the type visible globally during Next.js build. https://claude.ai/code/session_0172J363kooEWWteTsyt5yU8 --- src/types/pwa.d.ts | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/src/types/pwa.d.ts b/src/types/pwa.d.ts index 5491249e..23b7864e 100644 --- a/src/types/pwa.d.ts +++ b/src/types/pwa.d.ts @@ -7,10 +7,6 @@ interface BeforeInstallPromptEvent extends Event { prompt(): Promise; } -declare global { - interface WindowEventMap { - beforeinstallprompt: BeforeInstallPromptEvent; - } +interface WindowEventMap { + beforeinstallprompt: BeforeInstallPromptEvent; } - -export {};