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 - Riot 9.x
- Route 9.x - Route 9.x
- Vite 5.x - Vite 6.x
## Getting Started ## Getting Started
@ -36,14 +36,16 @@ When you use this template, you should update the following with your informatio
``` ```
dist/ <-- `npm run build` app dist/ <-- `npm run build` app
src/ <-- your source code app/ <-- your app code
css/ <-- processed css files css/ <-- processed css files
js/ <-- processed javascript files js/ <-- processed javascript files
public/ <-- unprocessed static `/` assets public/ <-- unprocessed static `/` assets
components/ <-- riots components examples components/ <-- riots components
app.riot
pages/ <-- semantic page/components
riot-welcome.riot riot-welcome.riot
riot-about.riot riot-about.riot
main.js <-- main app initialization boot.js <-- app bootstrap
index.html <-- START HERE index.html <-- START HERE
vite.config.js <-- build configuration vite.config.js <-- build configuration
README.md 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", "name": "vite-riot-template",
"version": "3.1.1", "version": "3.2.0",
"type": "module", "type": "module",
"scripts": { "scripts": {
"dev": "vite", "dev": "vite",
@ -8,15 +8,15 @@
"preview": "vite preview" "preview": "vite preview"
}, },
"engines": { "engines": {
"node": ">18.0.0 <21.0.0" "node": ">18.0.0 <23.0.0"
}, },
"dependencies": { "dependencies": {
"@riotjs/route": "^9.2.1", "@riotjs/route": "^9.2.2",
"riot": "^9.4.4" "riot": "^9.4.6"
}, },
"devDependencies": { "devDependencies": {
"@riotjs/compiler": "^9.4.1", "@riotjs/compiler": "^9.4.4",
"rollup-plugin-riot": "^9.0.2", "rollup-plugin-riot": "^9.0.2",
"vite": "^6.0.3" "vite": "^6.2.2"
} }
} }