From fdd857c01c49b153ff1ac1506710c30b1694f02e Mon Sep 17 00:00:00 2001 From: Geoff Doty Date: Sat, 22 Mar 2025 18:13:08 -0400 Subject: [PATCH] refactor example --- src/main.js => app/boot.js | 10 +++++----- {src => app}/components/app.riot | 4 ++-- {src => app}/css/main.css | 0 {src/components => app/pages}/riot-about.riot | 8 ++++---- {src/components => app/pages}/riot-welcome.riot | 13 +++++++------ {src => app}/public/assets/images/square.svg | 0 {src => app}/public/favicon.ico | Bin index.html | 4 ++-- vite.config.js | 4 ++-- 9 files changed, 22 insertions(+), 21 deletions(-) rename src/main.js => app/boot.js (87%) rename {src => app}/components/app.riot (84%) rename {src => app}/css/main.css (100%) rename {src/components => app/pages}/riot-about.riot (71%) rename {src/components => app/pages}/riot-welcome.riot (77%) rename {src => app}/public/assets/images/square.svg (100%) rename {src => app}/public/favicon.ico (100%) diff --git a/src/main.js b/app/boot.js similarity index 87% rename from src/main.js rename to app/boot.js index 6afa143..1134efb 100644 --- a/src/main.js +++ b/app/boot.js @@ -2,9 +2,9 @@ import * as riot from "riot"; import {Route, Router} from "@riotjs/route"; import app from "./components/app.riot"; -const main = { +const boot = { // start-up actions here - init() { + start() { // install plugins this.plugins(); @@ -18,8 +18,8 @@ const main = { // add your own features here component.version = { riot: "9.x.x", - vite: "5.x.x", - app: "3.1.0" + vite: "6.x.x", + app: "4.0.0" }; }); }, @@ -35,4 +35,4 @@ const main = { } } -main.init(); +boot.start(); diff --git a/src/components/app.riot b/app/components/app.riot similarity index 84% rename from src/components/app.riot rename to app/components/app.riot index eb5ce1b..c689cf0 100644 --- a/src/components/app.riot +++ b/app/components/app.riot @@ -13,8 +13,8 @@ + \ No newline at end of file diff --git a/vite.config.js b/vite.config.js index 3372c72..2a8c3db 100644 --- a/vite.config.js +++ b/vite.config.js @@ -2,8 +2,8 @@ import { defineConfig } from "vite"; import riot from 'rollup-plugin-riot'; export default defineConfig({ - input: "src/components", + input: "app/**/*", output: "dist/bundle.js", plugins: [riot()], - publicDir: 'src/public' + publicDir: 'app/public' });