Skip to content

Commit f16554f

Browse files
committed
chore: wipe
1 parent b503c64 commit f16554f

80 files changed

Lines changed: 2653 additions & 6225 deletions

Some content is hidden

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

.github/workflows/ci.yaml

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

.gitignore

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
test-results
12
node_modules
23

34
# Output
@@ -26,3 +27,8 @@ vite.config.ts.timestamp-*
2627
*.db
2728

2829
.vscode/settings.json
30+
31+
*storybook.log
32+
storybook-static
33+
34+
coverage/

.mcp.json

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"mcpServers": {
3+
"svelte": {
4+
"type": "http",
5+
"url": "https://mcp.svelte.dev/mcp"
6+
}
7+
}
8+
}

.prettierrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,5 @@
88
}
99
}
1010
],
11-
"tailwindStylesheet": "src/routes/layout.css"
11+
"tailwindStylesheet": "./src/routes/layout.css"
1212
}

.storybook/main.ts

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
import type { StorybookConfig } from "@storybook/sveltekit";
2+
3+
const config: StorybookConfig = {
4+
stories: ["../src/**/*.mdx", "../src/**/*.stories.@(js|ts|svelte)"],
5+
addons: [
6+
"@storybook/addon-svelte-csf",
7+
"@chromatic-com/storybook",
8+
"@storybook/addon-vitest",
9+
"@storybook/addon-a11y",
10+
"@storybook/addon-docs",
11+
],
12+
framework: "@storybook/sveltekit",
13+
};
14+
export default config;

.storybook/preview.ts

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
import type { Preview } from "@storybook/sveltekit";
2+
3+
export default {
4+
parameters: {
5+
controls: {
6+
matchers: {
7+
color: /(background|color)$/i,
8+
date: /Date$/i,
9+
},
10+
},
11+
12+
a11y: {
13+
test: "error",
14+
},
15+
},
16+
} satisfies Preview;

.storybook/vitest.setup.ts

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
import * as a11yAddonAnnotations from "@storybook/addon-a11y/preview";
2+
import { setProjectAnnotations } from "@storybook/sveltekit";
3+
import * as projectAnnotations from "./preview";
4+
5+
// This is an important step to apply the right configuration when testing your stories.
6+
// More info at: https://storybook.js.org/docs/api/portable-stories/portable-stories-vitest#setprojectannotations
7+
setProjectAnnotations([a11yAddonAnnotations, projectAnnotations]);

.vscode/mcp.json

Lines changed: 1 addition & 51 deletions
Original file line numberDiff line numberDiff line change
@@ -1,57 +1,7 @@
11
{
22
"servers": {
33
"svelte": {
4-
"type": "http",
54
"url": "https://mcp.svelte.dev/mcp"
6-
},
7-
"ESLint": {
8-
"type": "stdio",
9-
"command": "pnpm",
10-
"args": [
11-
"dlx",
12-
"--package=jiti",
13-
"--package=@eslint/mcp@latest",
14-
"-s",
15-
"mcp"
16-
]
17-
},
18-
"io.github.upstash/context7": {
19-
"type": "stdio",
20-
"command": "pnpm",
21-
"args": [
22-
"dlx",
23-
"-s",
24-
"@upstash/context7-mcp@latest",
25-
"--api-key",
26-
"${input:CONTEXT7_API_KEY}"
27-
]
28-
},
29-
"io.github.ChromeDevTools/chrome-devtools-mcp": {
30-
"type": "stdio",
31-
"command": "pnpm",
32-
"args": ["dlx", "-s", "chrome-devtools-mcp@0.12.0"]
33-
},
34-
"socket-mcp": {
35-
"type": "stdio",
36-
"command": "pnpm",
37-
"args": ["dlx", "-s", "@socketsecurity/mcp@latest"],
38-
"env": {
39-
"SOCKET_API_KEY": "${input:socket_api_key}"
40-
}
415
}
42-
},
43-
"inputs": [
44-
{
45-
"id": "CONTEXT7_API_KEY",
46-
"type": "promptString",
47-
"description": "API key for authentication",
48-
"password": true
49-
},
50-
{
51-
"type": "promptString",
52-
"id": "socket_api_key",
53-
"description": "Socket API Key",
54-
"password": true
55-
}
56-
]
6+
}
577
}

.vscode/settings.example.json

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

.vscode/settings.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"files.associations": {
3+
"*.css": "tailwindcss"
4+
}
5+
}

0 commit comments

Comments
 (0)