Skip to content

Commit 366e40b

Browse files
committed
chore: update packages, fix ci, fix lint
1 parent 764ce52 commit 366e40b

4 files changed

Lines changed: 220 additions & 216 deletions

File tree

.github/workflows/ci-lint.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,5 +36,8 @@ jobs:
3636
shell: bash
3737
run: pnpm install --frozen-lockfile --strict-peer-dependencies
3838

39-
- name: Run Linting and Formatting Check
39+
- name: Run Formatting Check
40+
run: pnpm run format:check
41+
42+
- name: Run Linting
4043
run: pnpm run lint

package.json

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,8 @@
1010
"prepare": "svelte-kit sync || echo '' && husky",
1111
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
1212
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
13-
"lint": "prettier --check . && eslint .",
13+
"lint": "eslint .",
14+
"format:check": "prettier --check .",
1415
"format": "prettier --write .",
1516
"test": "npm run test:unit -- --run && npm run test:e2e",
1617
"test:e2e": "playwright test",
@@ -21,7 +22,7 @@
2122
"@eslint/compat": "^2.0.5",
2223
"@eslint/js": "latest",
2324
"@internationalized/date": "^3.12.1",
24-
"@lucide/svelte": "^1.8.0",
25+
"@lucide/svelte": "^1.14.0",
2526
"@microsoft/signalr": "^10.0.0",
2627
"@playwright/test": "^1.59.1",
2728
"@sveltejs/adapter-cloudflare": "^7.2.8",
@@ -48,19 +49,19 @@
4849
"prettier": "^3.8.3",
4950
"prettier-plugin-organize-imports": "^4.3.0",
5051
"prettier-plugin-svelte": "^3.5.1",
51-
"prettier-plugin-tailwindcss": "^0.7.3",
52+
"prettier-plugin-tailwindcss": "^0.8.0",
5253
"rollup-plugin-license": "^3.7.1",
5354
"semver": "^7.7.4",
5455
"svelte": "^5.55.5",
5556
"svelte-check": "^4.4.6",
56-
"svelte-sonner": "^1.1.0",
57+
"svelte-sonner": "^1.1.1",
5758
"sveltekit-superforms": "^2.30.1",
5859
"tailwind-merge": "^3.5.0",
5960
"tailwind-variants": "^3.2.2",
6061
"tailwindcss": "^4.2.4",
6162
"tw-animate-css": "^1.4.0",
6263
"typescript": "^6.0.3",
63-
"typescript-eslint": "^8.59.0",
64+
"typescript-eslint": "^8.59.1",
6465
"ua-parser-js": "2.0.9",
6566
"vaul-svelte": "1.0.0-next.7",
6667
"vite-plugin-devtools-json": "^1.0.0",

0 commit comments

Comments
 (0)