chore: bump JS cache versions for multiplayer updates

rchoices v=2, rswag v=2, rwallet v=13

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Jeff Emmett 2026-03-15 21:10:49 -07:00
parent 88b20f13f5
commit e498233666
3 changed files with 3 additions and 3 deletions

View File

@ -56,7 +56,7 @@ routes.get("/", (c) => {
modules: getModuleInfoList(),
theme: "dark",
body: `<folk-choices-dashboard space="${spaceSlug}"></folk-choices-dashboard>`,
scripts: `<script type="module" src="/modules/rchoices/folk-choices-dashboard.js"></script>`,
scripts: `<script type="module" src="/modules/rchoices/folk-choices-dashboard.js?v=2"></script>`,
styles: `<link rel="stylesheet" href="/modules/rchoices/choices.css">`,
}));
});

View File

@ -238,7 +238,7 @@ routes.get("/", (c) => {
modules: getModuleInfoList(),
theme: "dark",
body: `<folk-swag-designer space="${space}"></folk-swag-designer>`,
scripts: `<script type="module" src="/modules/rswag/folk-swag-designer.js"></script>`,
scripts: `<script type="module" src="/modules/rswag/folk-swag-designer.js?v=2"></script>`,
styles: `<link rel="stylesheet" href="/modules/rswag/swag.css">`,
}));
});

View File

@ -1014,7 +1014,7 @@ function renderWallet(spaceSlug: string, initialView?: string) {
modules: getModuleInfoList(),
theme: "dark",
body: `<folk-wallet-viewer${viewAttr}></folk-wallet-viewer>`,
scripts: `<script type="module" src="/modules/rwallet/folk-wallet-viewer.js?v=12"></script>`,
scripts: `<script type="module" src="/modules/rwallet/folk-wallet-viewer.js?v=13"></script>`,
styles: `<link rel="stylesheet" href="/modules/rwallet/wallet.css">`,
});
}