Skip to content

Commit 7f767d2

Browse files
authored
Merge pull request #28 from bernoussama/undo-css-reduce
update server tsdown
2 parents cabda57 + f227dad commit 7f767d2

4 files changed

Lines changed: 44 additions & 500 deletions

File tree

apps/server/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
"@cloudflare/workers-types": "catalog:",
2626
"@types/node": "^22.13.14",
2727
"alchemy": "catalog:",
28-
"tsdown": "^0.16.5",
28+
"tsdown": "^0.22.1",
2929
"typescript": "catalog:",
3030
"vitest": "catalog:",
3131
"wrangler": "catalog:"

apps/server/tsdown.config.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,8 @@ export default defineConfig({
55
format: "esm",
66
outDir: "./dist",
77
clean: true,
8-
noExternal: [/@clankeroverflow\/.*/],
8+
dts: false,
9+
deps: {
10+
alwaysBundle: [/@clankeroverflow\/.*/],
11+
},
912
});

apps/web/src/app/onboarding/onboarding.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ export default function Onboarding() {
102102
</div>
103103
<div className="dashboard-card__body">
104104
{!createdKey ? (
105-
<form onSubmit={handleCreate} className="flex gap-2">
105+
<form onSubmit={handleCreate} className="dashboard-key-form">
106106
<Input
107107
placeholder="Key name (e.g. My Editor)"
108108
value={keyName}
@@ -112,7 +112,7 @@ export default function Onboarding() {
112112
/>
113113
<button
114114
type="submit"
115-
className="btn-primary text-sm py-2 px-4"
115+
className="btn-primary dashboard-key-create text-sm"
116116
disabled={createMutation.isPending || !keyName.trim()}
117117
>
118118
{createMutation.isPending ? (

0 commit comments

Comments
 (0)