Migrate to newer version of things
This commit is contained in:
+10
-11
@@ -10,16 +10,15 @@
|
|||||||
"check": "svelte-check --tsconfig ./tsconfig.json"
|
"check": "svelte-check --tsconfig ./tsconfig.json"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@sveltejs/vite-plugin-svelte": "^3.0.2",
|
"@sveltejs/vite-plugin-svelte": "^6.2.1",
|
||||||
"@tsconfig/svelte": "^5.0.2",
|
"@tailwindcss/vite": "^4.1.13",
|
||||||
"autoprefixer": "^10.4.19",
|
"@tsconfig/svelte": "^5.0.5",
|
||||||
"postcss": "^8.4.38",
|
"svelte": "^5.39.6",
|
||||||
"svelte": "^4.2.12",
|
"svelte-check": "^4.3.2",
|
||||||
"svelte-check": "^3.6.7",
|
"tailwindcss": "^4.1.13",
|
||||||
"tailwindcss": "^3.4.3",
|
"tslib": "^2.8.1",
|
||||||
"tslib": "^2.6.2",
|
"typescript": "^5.9.2",
|
||||||
"typescript": "^5.2.2",
|
"vite": "^7.1.7"
|
||||||
"vite": "^5.2.0"
|
|
||||||
},
|
},
|
||||||
"packageManager": "pnpm@9.0.6+sha1.648f6014eb363abb36618f2ba59282a9eeb3e879"
|
"packageManager": "pnpm@10.17.1+sha512.17c560fca4867ae9473a3899ad84a88334914f379be46d455cbf92e5cf4b39d34985d452d2583baf19967fa76cb5c17bc9e245529d0b98745721aa7200ecaf7a"
|
||||||
}
|
}
|
||||||
|
|||||||
Generated
+900
-1502
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,4 @@
|
|||||||
|
onlyBuiltDependencies:
|
||||||
|
- '@tailwindcss/oxide'
|
||||||
|
- esbuild
|
||||||
|
- svelte-preprocess
|
||||||
@@ -1,6 +0,0 @@
|
|||||||
export default {
|
|
||||||
plugins: {
|
|
||||||
tailwindcss: {},
|
|
||||||
autoprefixer: {},
|
|
||||||
},
|
|
||||||
}
|
|
||||||
+30
-37
@@ -1,44 +1,37 @@
|
|||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
import ServerList from "./lib/ServerList.svelte";
|
import ServerList from "./lib/ServerList.svelte";
|
||||||
import ServerItem from "./lib/ServerItem.svelte";
|
import ServerItem from "./lib/ServerItem.svelte";
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<header>
|
<header>
|
||||||
<img
|
<img
|
||||||
src="/dailitation_logo.svg"
|
src="/dailitation_logo.svg"
|
||||||
alt="The dailitation logo"
|
alt="The dailitation logo"
|
||||||
class="w-3/4 sm:w-1/3"
|
class="w-3/4 sm:w-1/3"
|
||||||
/>
|
/>
|
||||||
</header>
|
</header>
|
||||||
<main>
|
<main>
|
||||||
<details class="m-2">
|
<details class="m-2">
|
||||||
<summary>Shared owner servers</summary>
|
<summary>Shared owner servers</summary>
|
||||||
<div class="m-2">
|
<p class="m-2">
|
||||||
<p>This list servers that are shared between two or more owners.</p>
|
This list servers that are shared between two or more owners.
|
||||||
<ServerList>
|
</p>
|
||||||
<ServerItem name="Delta" ip="10.10.11.1:1229" />
|
<ServerList>
|
||||||
</ServerList>
|
<ServerItem name="Delta" ip="10.10.11.1:1229" />
|
||||||
</div>
|
</ServerList>
|
||||||
</details>
|
</details>
|
||||||
<details class="m-2">
|
<details class="m-2">
|
||||||
<summary>Diskette</summary>
|
<summary>Diskette</summary>
|
||||||
<ServerList>
|
<ServerList>
|
||||||
<ServerItem name="Butterfly" ip="10.10.10.1:1228" />
|
<ServerItem name="Butterfly" ip="10.10.10.1:1228" />
|
||||||
<ServerItem name="Thetic" ip="10.10.10.2:58020" />
|
<ServerItem name="Thetic" ip="10.10.10.2:58020" />
|
||||||
<ServerItem name="NonGNU" ip="10.10.10.7:58040" />
|
<ServerItem name="Proper" ip="10.10.10.15:523" />
|
||||||
<ServerItem name="Proper" ip="10.10.10.15:523" />
|
</ServerList>
|
||||||
</ServerList>
|
</details>
|
||||||
</details>
|
<details class="m-2">
|
||||||
<details class="m-2">
|
<summary>lines-of-codes (GameCreator)</summary>
|
||||||
<summary>Techit</summary>
|
<ServerList>
|
||||||
<ServerList>
|
<ServerItem name="asusarch" ip="10.10.10.9:345" />
|
||||||
<ServerItem name="Copperplate" ip="10.10.10.8:28921" />
|
</ServerList>
|
||||||
</ServerList>
|
</details>
|
||||||
</details>
|
|
||||||
<details class="m-2">
|
|
||||||
<summary>lines-of-codes (GameCreator)</summary>
|
|
||||||
<ServerList>
|
|
||||||
<ServerItem name="asusarch" ip="10.10.10.9:345" />
|
|
||||||
</ServerList>
|
|
||||||
</details>
|
|
||||||
</main>
|
</main>
|
||||||
|
|||||||
+1
-3
@@ -1,6 +1,4 @@
|
|||||||
@tailwind base;
|
@import "tailwindcss";
|
||||||
@tailwind components;
|
|
||||||
@tailwind utilities;
|
|
||||||
|
|
||||||
:root {
|
:root {
|
||||||
font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
|
font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
|
||||||
|
|||||||
@@ -1,6 +1,11 @@
|
|||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
export let name: String;
|
let {
|
||||||
export let ip: String;
|
name,
|
||||||
|
ip,
|
||||||
|
}: {
|
||||||
|
name: string;
|
||||||
|
ip: string;
|
||||||
|
} = $props();
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<li class="m-2 p-2 rounded border shadow">
|
<li class="m-2 p-2 rounded border shadow">
|
||||||
|
|||||||
@@ -1,3 +1,8 @@
|
|||||||
|
<script lang="ts">
|
||||||
|
let { children } = $props();
|
||||||
|
</script>
|
||||||
|
|
||||||
|
|
||||||
<ol class="grid grid-flow-row md:grid-cols-2 lg:grid-cols-3">
|
<ol class="grid grid-flow-row md:grid-cols-2 lg:grid-cols-3">
|
||||||
<slot />
|
{@render children()}
|
||||||
</ol>
|
</ol>
|
||||||
|
|||||||
+3
-2
@@ -1,8 +1,9 @@
|
|||||||
|
import { mount } from 'svelte'
|
||||||
import './app.css'
|
import './app.css'
|
||||||
import App from './App.svelte'
|
import App from './App.svelte'
|
||||||
|
|
||||||
const app = new App({
|
const app = mount(App, {
|
||||||
target: document.getElementById('app')!,
|
target: document.getElementById('app')!,
|
||||||
})
|
})
|
||||||
|
|
||||||
export default app
|
export default app
|
||||||
|
|||||||
@@ -1,11 +0,0 @@
|
|||||||
/** @type {import('tailwindcss').Config} */
|
|
||||||
export default {
|
|
||||||
content: [
|
|
||||||
"./src/**/*.{svelte,css}"
|
|
||||||
],
|
|
||||||
theme: {
|
|
||||||
extend: {},
|
|
||||||
},
|
|
||||||
plugins: [],
|
|
||||||
}
|
|
||||||
|
|
||||||
+2
-1
@@ -1,7 +1,8 @@
|
|||||||
import { defineConfig } from 'vite'
|
import { defineConfig } from 'vite'
|
||||||
import { svelte } from '@sveltejs/vite-plugin-svelte'
|
import { svelte } from '@sveltejs/vite-plugin-svelte'
|
||||||
|
import tailwindcss from '@tailwindcss/vite'
|
||||||
|
|
||||||
// https://vitejs.dev/config/
|
// https://vitejs.dev/config/
|
||||||
export default defineConfig({
|
export default defineConfig({
|
||||||
plugins: [svelte()],
|
plugins: [svelte(), tailwindcss()],
|
||||||
})
|
})
|
||||||
|
|||||||
Reference in New Issue
Block a user