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' });