a homebrewed DnD campaign based in the Honkai: Star Rail universe
hsr honkaistarrail dnd
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

setup sonda for analyzing app bundle

+28 -1
+5
.gitignore
··· 28 28 storybook-static 29 29 30 30 # scc 31 + # https://github.com/boyter/scc 31 32 .sccignore 33 + 34 + # sonda, bundle analyzer 35 + # https://sonda.dev/configuration.html#outputdir 36 + .sonda
+1
app/package.json
··· 71 71 "drizzle-kit": "catalog:app", 72 72 "lightningcss": "catalog:voidzero", 73 73 "playwright": "catalog:voidzero", 74 + "sonda": "catalog:dev", 74 75 "svelte": "catalog:svelte", 75 76 "svelte-check": "catalog:svelte", 76 77 "tailwindcss": "catalog:tailwind",
+5 -1
app/vite.config.ts
··· 1 1 import { sveltekit } from '@sveltejs/kit/vite' 2 2 import tailwindcss from '@tailwindcss/vite' 3 3 import { playwright } from '@vitest/browser-playwright' 4 + import sonda from 'sonda/sveltekit' 4 5 import { defineProject } from 'vitest/config' 5 6 import 'dotenv' 6 7 7 8 export default defineProject({ 8 - plugins: [tailwindcss(), sveltekit()], 9 + build: { 10 + sourcemap: true, 11 + }, 12 + plugins: [tailwindcss(), sveltekit(), sonda()], 9 13 server: { 10 14 host: '0.0.0.0', 11 15 allowedHosts: process.env.OAUTH_DOMAIN ? [process.env.OAUTH_DOMAIN] : [],
+16
pnpm-lock.yaml
··· 68 68 node-modules-inspector: 69 69 specifier: ^1.4.2 70 70 version: 1.4.2 71 + sonda: 72 + specifier: ^0.11.1 73 + version: 0.11.1 71 74 type-fest: 72 75 specifier: ^5.4.4 73 76 version: 5.5.0 ··· 417 420 playwright: 418 421 specifier: catalog:voidzero 419 422 version: 1.58.2 423 + sonda: 424 + specifier: catalog:dev 425 + version: 0.11.1 420 426 svelte: 421 427 specifier: catalog:svelte 422 428 version: 5.55.3 ··· 4382 4388 sisteransi@1.0.5: 4383 4389 resolution: {integrity: sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==} 4384 4390 4391 + sonda@0.11.1: 4392 + resolution: {integrity: sha512-WruAwwzdjQ4U2c4dst8EMzFKf0s8EOWrr9ZOUrkjeQdxCjsFFo0/Em49NiLm5Op1yOXGT0VFDMcM4k5kl3wrCA==} 4393 + engines: {node: '>=20.19 || >=22.12'} 4394 + hasBin: true 4395 + 4385 4396 source-map-js@1.2.1: 4386 4397 resolution: {integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==} 4387 4398 engines: {node: '>=0.10.0'} ··· 8390 8401 totalist: 3.0.1 8391 8402 8392 8403 sisteransi@1.0.5: {} 8404 + 8405 + sonda@0.11.1: 8406 + dependencies: 8407 + '@jridgewell/remapping': 2.3.5 8408 + open: 11.0.0 8393 8409 8394 8410 source-map-js@1.2.1: {} 8395 8411
+1
pnpm-workspace.yaml
··· 32 32 cloudflared: ^0.7.1 33 33 eslint-plugin-svelte: ^3.17.0 34 34 node-modules-inspector: ^1.4.2 35 + sonda: ^0.11.1 35 36 type-fest: ^5.4.4 36 37 typescript: ^5.9.3 37 38 wrangler: 4.67.0