This commit is contained in:
Geoff Doty 2025-03-22 18:13:17 -04:00
parent fdd857c01c
commit fdf3c7e05f
3 changed files with 316 additions and 272 deletions

View File

@ -8,7 +8,7 @@ Minimal SPA setup using
- Riot 9.x
- Route 9.x
- Vite 5.x
- Vite 6.x
## Getting Started
@ -36,14 +36,16 @@ When you use this template, you should update the following with your informatio
```
dist/ <-- `npm run build` app
src/ <-- your source code
app/ <-- your app code
css/ <-- processed css files
js/ <-- processed javascript files
public/ <-- unprocessed static `/` assets
components/ <-- riots components examples
components/ <-- riots components
app.riot
pages/ <-- semantic page/components
riot-welcome.riot
riot-about.riot
main.js <-- main app initialization
boot.js <-- app bootstrap
index.html <-- START HERE
vite.config.js <-- build configuration
README.md

566
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -1,6 +1,6 @@
{
"name": "vite-riot-template",
"version": "3.1.1",
"version": "3.2.0",
"type": "module",
"scripts": {
"dev": "vite",
@ -8,15 +8,15 @@
"preview": "vite preview"
},
"engines": {
"node": ">18.0.0 <21.0.0"
"node": ">18.0.0 <23.0.0"
},
"dependencies": {
"@riotjs/route": "^9.2.1",
"riot": "^9.4.4"
"@riotjs/route": "^9.2.2",
"riot": "^9.4.6"
},
"devDependencies": {
"@riotjs/compiler": "^9.4.1",
"@riotjs/compiler": "^9.4.4",
"rollup-plugin-riot": "^9.0.2",
"vite": "^6.0.3"
"vite": "^6.2.2"
}
}