Skip to content

Commit c956aec

Browse files
author
Coinnich
committed
refactor: adopt feature-scoped Panda style modules, strip central lib/styles, refresh landing and dashboard UI, add InvoiceSummaryItem, expand client detail page, update lockfile and configs, remove ultracite cursor rule
1 parent 71b2d0b commit c956aec

53 files changed

Lines changed: 426 additions & 553 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.cursor/rules/ultracite.mdc

Lines changed: 0 additions & 123 deletions
This file was deleted.

.env.schema

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,5 @@ BITWARDEN_ACCESS_TOKEN=
1111
DATABASE_URL=bitwarden("97d7fb2e-7189-4003-9489-b42b00271d7b")
1212
# @sensitive @type=string @required
1313
BETTER_AUTH_SECRET=bitwarden("3f6a8182-0d80-46ce-b10c-b42b0026e464")
14-
# @public @type=url @required
14+
# @public @type=url(noTrailingSlash=true) @required
1515
PUBLIC_BASE_URL=http://localhost:5173

.vscode/settings.json

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"editor.defaultFormatter": "biomejs.biome",
2+
"editor.defaultFormatter": "esbenp.prettier-vscode",
33
"editor.formatOnSave": true,
44
"editor.codeActionsOnSave": {
55
"source.fixAll.biome": "explicit",
@@ -64,5 +64,7 @@
6464
},
6565
"[yaml]": {
6666
"editor.defaultFormatter": "biomejs.biome"
67-
}
67+
},
68+
"js/ts.tsdk.path": "node_modules/typescript/lib",
69+
"js/ts.tsdk.promptToUseWorkspaceVersion": true
6870
}

bun.lock

Lines changed: 25 additions & 22 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

drizzle.config.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
/// <reference path="./src/env-varlock.d.ts" />
22
import { defineConfig } from "drizzle-kit";
3-
3+
import { ENV } from "varlock/env";
44
export default defineConfig({
55
dialect: "postgresql",
66
schema: "./src/lib/server/db/schema.ts",
77
out: "./src/lib/server/db/migrations",
88
verbose: true,
99
strict: true,
1010
dbCredentials: {
11-
url: process.env.DATABASE_URL,
11+
url: ENV.DATABASE_URL,
1212
},
1313
});

package.json

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
},
1818
"devDependencies": {
1919
"@ark-ui/svelte": "^5.21.2",
20-
"@biomejs/biome": "2.4.12",
20+
"@biomejs/biome": "2.4.14",
2121
"@lucide/svelte": "^1.14.0",
2222
"@pandacss/dev": "^1.11.0",
2323
"@pandacss/plugin-svelte": "^1.11.0",
@@ -28,7 +28,7 @@
2828
"@types/bun": "^1.3.13",
2929
"@varlock/vite-integration": "^1.1.0",
3030
"drizzle-kit": "1.0.0-rc.1",
31-
"fallow": "2.63.0",
31+
"fallow": "2.64.0",
3232
"openapi-types": "^12.1.3",
3333
"rollup-plugin-visualizer": "^7.0.1",
3434
"svelte": "^5.55.5",
@@ -41,9 +41,9 @@
4141
"name": "dollar-holler",
4242
"scripts": {
4343
"dev": "varlock run -- bun --bun vite dev",
44-
"build": "varlock run -- bun --bun vite build",
44+
"build": "panda codegen && varlock run -- bun --bun vite build",
4545
"preview": "varlock run -- bun --bun vite preview",
46-
"prepare": "panda codegen && svelte-kit sync || echo ''",
46+
"prepare": "panda codegen && svelte-kit sync",
4747
"check": "ultracite check",
4848
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
4949
"db:seed": "varlock run -- bun ./src/lib/server/db/seed.ts",
@@ -67,7 +67,9 @@
6767
"overrides": {
6868
"cookie": ">1.0.2",
6969
"uuid": ">=14.0.0",
70-
"postcss": ">=8.5.10"
70+
"postcss": ">=8.5.10",
71+
"ip-address": ">10.1.0",
72+
"hono": ">=4.12.16"
7173
},
7274
"trustedDependencies": []
7375
}

0 commit comments

Comments
 (0)