chore: publish from main

This commit is contained in:
github-actions[bot]
2026-07-18 00:50:03 +00:00
parent 941c2a4b41
commit 7174a12f1c
514 changed files with 222 additions and 50538 deletions
-17
View File
@@ -1,17 +0,0 @@
(() => {
window.__agentArcadePhaserReady = (async () => {
if (!("DecompressionStream" in window)) {
throw new Error("This browser cannot load the compressed Phaser bundle.");
}
const response = await fetch("./phaser.min.js.gz");
if (!response.ok || !response.body) {
throw new Error("Failed to load the Phaser bundle.");
}
const stream = response.body.pipeThrough(new DecompressionStream("gzip"));
const source = await new Response(stream).text();
(0, eval)(`${source}\n//# sourceURL=phaser.min.bundle.js`);
return window.Phaser;
})();
})();