This commit is contained in:
Geoff Doty 2026-03-16 11:36:16 -04:00
parent 5198487c31
commit 7310305d2f
4 changed files with 631 additions and 782 deletions

View File

@ -9,7 +9,7 @@ Minimal SPA setup using
- Node 22+ - Node 22+
- Riot 10.x - Riot 10.x
- Route 10.x - Route 10.x
- Vite 7.x - Vite 8.x
## Getting Started ## Getting Started

View File

@ -18,7 +18,7 @@ const boot = {
// add your own features here // add your own features here
component.version = { component.version = {
riot: "10.x", riot: "10.x",
vite: "7.x.", vite: "8.x.",
app: "5.0.0" app: "5.0.0"
}; };
}); });

1405
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -1,6 +1,6 @@
{ {
"name": "vite-riot-template", "name": "vite-riot-template",
"version": "5.0.0", "version": "5.1.0",
"type": "module", "type": "module",
"scripts": { "scripts": {
"dev": "vite", "dev": "vite",
@ -17,6 +17,6 @@
"devDependencies": { "devDependencies": {
"@riotjs/compiler": "^10.0.1", "@riotjs/compiler": "^10.0.1",
"rollup-plugin-riot": "^10.0.0", "rollup-plugin-riot": "^10.0.0",
"vite": "^7.3.0" "vite": "^8.0.0"
} }
} }