commit 55a1623393125e6ed8b886b68987f1ddb4556c23 Author: Samantha Becker <12024604-beckersam@users.noreply.gitlab.com> Date: Thu Jul 13 15:44:10 2023 +0200 Initial commit (via bun create) diff --git a/package.json b/package.json new file mode 100644 index 0000000..18f74e7 --- /dev/null +++ b/package.json @@ -0,0 +1,29 @@ +{ + "name": "evilthings", + "version": "0.0.41", + "scripts": { + "dev": "vite dev", + "build": "vite build", + "preview": "vite preview", + "check": "svelte-kit sync && svelte-check --tsconfig tsconfig.json", + "check:watch": "svelte-kit sync && svelte-check --tsconfig tsconfig.json --watch" + }, + "devDependencies": { + "@sveltejs/adapter-auto": "^1.0.0", + "@sveltejs/kit": "^1.0.12", + "svelte": "^3.55.1", + "svelte-check": "^2.10.2", + "svelte-preprocess": "^5.0.0", + "tslib": "^2.4.1", + "typescript": "^4.9.4", + "vite": "^4.0.4" + }, + "type": "module", + "dependencies": { + "@bun-community/sveltekit-adapter-bun": "^0.0.6", + "@rollup/plugin-commonjs": "^24.0.0", + "@rollup/plugin-json": "^6.0.0", + "@rollup/plugin-node-resolve": "^15.0.1", + "rollup": "^3.7.5" + } +} \ No newline at end of file diff --git a/src/app.d.ts b/src/app.d.ts new file mode 100644 index 0000000..3e4ed20 --- /dev/null +++ b/src/app.d.ts @@ -0,0 +1,9 @@ +// See https://kit.svelte.dev/docs/types#app +// for information about these interfaces +// and what to do when importing types +declare namespace App { + // interface Locals {} + // interface PageData {} + // interface Error {} + // interface Platform {} +} diff --git a/src/app.html b/src/app.html new file mode 100644 index 0000000..5b53ef7 --- /dev/null +++ b/src/app.html @@ -0,0 +1,12 @@ + + + + + + + %sveltekit.head% + + +
%sveltekit.body%
+ + diff --git a/src/routes/+layout.svelte b/src/routes/+layout.svelte new file mode 100644 index 0000000..43097f8 --- /dev/null +++ b/src/routes/+layout.svelte @@ -0,0 +1 @@ +
\ No newline at end of file diff --git a/src/routes/+page.svelte b/src/routes/+page.svelte new file mode 100644 index 0000000..1bda83a --- /dev/null +++ b/src/routes/+page.svelte @@ -0,0 +1,12 @@ + + + +I'm counting ... {counter} + \ No newline at end of file diff --git a/src/routes/+server.ts b/src/routes/+server.ts new file mode 100644 index 0000000..36aa1dc --- /dev/null +++ b/src/routes/+server.ts @@ -0,0 +1,20 @@ +import { error } from "@sveltejs/kit"; + +/** @type {import('./$types').RequestHandler} */ +export function GET({ url }: { url: URL }) { + const min = Number(url.searchParams.get("min") ?? "0"); + const max = Number(url.searchParams.get("max") ?? "11"); + + const d = max - min; + + if (isNaN(d) || d < 0) { + throw error( + 400, + "min and max must be numbers, and min must be less than max" + ); + } + + const random = min + Math.random() * d; + + return new Response(String(random)); +} diff --git a/static/favicon.png b/static/favicon.png new file mode 100644 index 0000000..825b9e6 Binary files /dev/null and b/static/favicon.png differ diff --git a/svelte.config.js b/svelte.config.js new file mode 100644 index 0000000..e74438f --- /dev/null +++ b/svelte.config.js @@ -0,0 +1,17 @@ +import adapter from "@bun-community/sveltekit-adapter-bun"; +import preprocess from "svelte-preprocess"; + +/** @type {import('@sveltejs/kit').Config} */ +const config = { + // Consult https://github.com/sveltejs/svelte-preprocess + // for more information about preprocessors + preprocess: preprocess(), + + kit: { + adapter: adapter({ + dynamic_origin: true, + }), + }, +}; + +export default config; diff --git a/tsconfig.json b/tsconfig.json new file mode 100644 index 0000000..6ae0c8c --- /dev/null +++ b/tsconfig.json @@ -0,0 +1,17 @@ +{ + "extends": "./.svelte-kit/tsconfig.json", + "compilerOptions": { + "allowJs": true, + "checkJs": true, + "esModuleInterop": true, + "forceConsistentCasingInFileNames": true, + "resolveJsonModule": true, + "skipLibCheck": true, + "sourceMap": true, + "strict": true + } + // Path aliases are handled by https://kit.svelte.dev/docs/configuration#alias + // + // If you want to overwrite includes/excludes, make sure to copy over the relevant includes/excludes + // from the referenced tsconfig.json - TypeScript does not merge them in +} diff --git a/vite.config.ts b/vite.config.ts new file mode 100644 index 0000000..efc8757 --- /dev/null +++ b/vite.config.ts @@ -0,0 +1,8 @@ +import { sveltekit } from "@sveltejs/kit/vite"; +import type { UserConfig } from "vite"; + +const config: UserConfig = { + plugins: [sveltekit()], +}; + +export default config;