deps
This commit is contained in:
parent
fdd857c01c
commit
fdf3c7e05f
10
README.md
10
README.md
|
@ -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
|
||||
|
|
File diff suppressed because it is too large
Load Diff
12
package.json
12
package.json
|
@ -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"
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue