Skip to content

Commit 8b8acd8

Browse files
LadyBluenoteskodiakhq[bot]amirhhashemi
authored
Update Dependencies (#1203)
Co-authored-by: kodiakhq[bot] <49736102+kodiakhq[bot]@users.noreply.github.com> Co-authored-by: Amir Hossein Hashemi <[email protected]>
1 parent cd92124 commit 8b8acd8

File tree

10 files changed

+3486
-2723
lines changed

10 files changed

+3486
-2723
lines changed

.eslintrc.json

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

app.config.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,6 @@ export default defineConfig(
7676
cursorColor: "var(--twoslash-cursor)",
7777
},
7878
},
79-
twoSlash: false,
8079
},
8180
toc: {
8281
minDepth: 2,

eslint.config.ts

Lines changed: 57 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
1+
import eslint from "@eslint/js";
2+
import solid from "eslint-plugin-solid";
3+
import * as globals from "globals";
4+
import tseslint from "typescript-eslint";
5+
import tsParser from "@typescript-eslint/parser";
6+
7+
export default [
8+
{
9+
name: "global-ignores",
10+
ignores: [
11+
"**/dist/**",
12+
"**/node_modules/**",
13+
".github/",
14+
".solid/",
15+
".vinxi/",
16+
".netlify/",
17+
"public/",
18+
"scripts/",
19+
],
20+
},
21+
eslint.configs.recommended,
22+
...tseslint.configs.recommended,
23+
{
24+
files: ["**/*.{ts,tsx}"],
25+
languageOptions: {
26+
parser: tsParser,
27+
parserOptions: {
28+
project: "tsconfig.json",
29+
ecmaVersion: "latest",
30+
sourceType: "module",
31+
},
32+
globals: {
33+
...globals.browser,
34+
...globals.node,
35+
},
36+
},
37+
plugins: {
38+
solid,
39+
},
40+
rules: {
41+
quotes: ["error", "double"],
42+
semi: "warn",
43+
"@typescript-eslint/no-unused-vars": [
44+
"error",
45+
{
46+
args: "all",
47+
argsIgnorePattern: "^_",
48+
caughtErrors: "all",
49+
caughtErrorsIgnorePattern: "^_",
50+
destructuredArrayIgnorePattern: "^_",
51+
varsIgnorePattern: "^_",
52+
ignoreRestSiblings: true,
53+
},
54+
],
55+
},
56+
},
57+
];

package.json

Lines changed: 32 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -18,44 +18,46 @@
1818
"check:types": "tsc --noEmit"
1919
},
2020
"dependencies": {
21-
"@kobalte/core": "^0.13.9",
22-
"@kobalte/solidbase": "^0.0.24",
23-
"@lunariajs/core": "^0.0.31",
24-
"@oramacloud/client": "^1.3.15",
25-
"@solid-primitives/event-listener": "^2.3.3",
26-
"@solid-primitives/marker": "^0.1.0",
27-
"@solid-primitives/media": "^2.2.9",
28-
"@solid-primitives/platform": "^0.2.0",
21+
"@kobalte/core": "^0.13.10",
22+
"@kobalte/solidbase": "^0.2.16",
23+
"@lunariajs/core": "^0.1.1",
24+
"@oramacloud/client": "^2.1.4",
25+
"@solid-primitives/event-listener": "^2.4.1",
26+
"@solid-primitives/marker": "^0.2.1",
27+
"@solid-primitives/media": "^2.3.1",
28+
"@solid-primitives/platform": "^0.2.1",
2929
"@solidjs/meta": "^0.29.4",
3030
"@solidjs/router": "^0.15.3",
31-
"@solidjs/start": "^1.1.1",
32-
"dotenv": "^16.4.5",
33-
"glob": "^10.4.5",
31+
"@solidjs/start": "^1.1.4",
32+
"dotenv": "^16.5.0",
33+
"glob": "^11.0.2",
3434
"gray-matter": "^4.0.3",
35-
"postcss": "^8.4.47",
36-
"shiki": "^1.17.6",
37-
"sitemap": "^7.1.2",
35+
"postcss": "^8.5.5",
36+
"shiki": "^3.6.0",
37+
"sitemap": "^8.0.0",
3838
"solid-heroicons": "^3.2.4",
39-
"solid-js": "^1.9.5",
39+
"solid-js": "^1.9.7",
4040
"solid-list": "^0.3.0",
41-
"solid-mdx": "^0.0.7",
42-
"vinxi": "^0.5.3",
43-
"zod": "^3.23.8"
41+
"vinxi": "^0.5.7",
42+
"zod": "^3.25.62"
4443
},
4544
"devDependencies": {
45+
"@eslint/js": "^9.29.0",
4646
"@kobalte/tailwindcss": "^0.9.0",
47-
"@orama/crawly": "^0.0.4",
48-
"@tailwindcss/typography": "^0.5.15",
49-
"@types/node": "^22.9.0",
50-
"@typescript-eslint/eslint-plugin": "^8.7.0",
51-
"@typescript-eslint/parser": "^8.7.0",
52-
"autoprefixer": "^10.4.20",
53-
"eslint": "^8.57.1",
54-
"eslint-plugin-solid": "^0.13.2",
55-
"prettier": "3.2.5",
56-
"tailwindcss": "^3.4.11",
57-
"typescript": "^5.6.2",
58-
"vite": "^6.1.1"
47+
"@orama/crawly": "^0.0.6",
48+
"@tailwindcss/typography": "^0.5.16",
49+
"@types/node": "^24.0.1",
50+
"@typescript-eslint/eslint-plugin": "^8.34.0",
51+
"@typescript-eslint/parser": "^8.34.0",
52+
"autoprefixer": "^10.4.21",
53+
"eslint": "^9.28.0",
54+
"eslint-plugin-solid": "^0.14.5",
55+
"globals": "^16.2.0",
56+
"prettier": "3.5.3",
57+
"tailwindcss": "^3.4.17",
58+
"typescript": "^5.8.3",
59+
"typescript-eslint": "^8.34.0",
60+
"vite": "^6.3.5"
5961
},
6062
"engines": {
6163
"node": ">=18",

0 commit comments

Comments
 (0)