vite-plugin-server-actions 0.1.0 → 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
File without changes
@@ -1,8 +0,0 @@
1
- import "./app.css";
2
- import App from "./App.svelte";
3
-
4
- const app = new App({
5
- target: document.getElementById("app"),
6
- });
7
-
8
- export default app;
@@ -1,7 +0,0 @@
1
- import { vitePreprocess } from "@sveltejs/vite-plugin-svelte";
2
-
3
- export default {
4
- // Consult https://svelte.dev/docs#compile-time-svelte-preprocess
5
- // for more information about preprocessors
6
- preprocess: vitePreprocess(),
7
- };
@@ -1,27 +0,0 @@
1
- [
2
- {
3
- "id": 1,
4
- "text": "Finish writing documentation",
5
- "completed": false
6
- },
7
- {
8
- "id": 2,
9
- "text": "Implement authentication logic",
10
- "completed": true
11
- },
12
- {
13
- "id": 3,
14
- "text": "Design user interface",
15
- "completed": false
16
- },
17
- {
18
- "id": 4,
19
- "text": "Test server actions",
20
- "completed": true
21
- },
22
- {
23
- "id": 5,
24
- "text": "Deploy application",
25
- "completed": false
26
- }
27
- ]
@@ -1,12 +0,0 @@
1
- import { defineConfig } from "vite";
2
- import { svelte } from "@sveltejs/vite-plugin-svelte";
3
- import serverActions from "../../src/index.js";
4
-
5
- // https://vitejs.dev/config/
6
- export default defineConfig({
7
- plugins: [
8
- svelte(),
9
- serverActions(),
10
- // ...
11
- ],
12
- });